@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;
    }
  }

/* Mockup Details Page */
.mockup-details {
    padding: 3rem 10rem;
    background: #fff;
  }
  
  .mockup-details-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }
  
  .mockup-image img {
    width: 100%;
    border-radius: 12px;
  }
  
  .mockup-info h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
  }
  
  .mockup-info .category {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
  }
  
  .mockup-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
  }
  
  .download-btn {
    display: inline-block;
    background: #000000;
    color: #fff;
    margin-top: 50px;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s;
  }
  
  .download-btn:hover {
    background: #f83600;
  }
  /* Extra details */
.mockup-info .designer,
.mockup-info .file-type {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
}

.mockup-info .tags {
  font-size: 0.95rem;
  color: #333;
}

.mockup-info .tags span {
  display: inline-block;
  margin-top: 10px;
}

.mockup-info .tags .tag {
  background: #eee;
  color: #333;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  margin: 0.2rem;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.3s;
}

.mockup-info .tags .tag:hover {
  background: #f83600;
  color: #fff;
}

  /* Responsive */
  @media (max-width: 1024px) {
    .mockup-details {
    padding: 3rem 5rem;
    background: #fff;
  }
  }
  @media (max-width: 768px) {
    .mockup-details-container {
      grid-template-columns: 1fr;
    }
  
    .mockup-info h1 {
      font-size: 1.6rem;
    }
  
    .download-btn {
      width: 100%;
      text-align: center;
    }
    .mockup-details {
        padding: 3rem 1.5rem;
      }
  }

/* Related Mockups */
.related-mockups {
    background: #f9f9f9;
    padding: 3rem 10rem;
  }
  
  .related-container {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
  }
  
  .related-container h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1a1a1a;
  }
  
  .related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
  }
  
  .related-card {
    border-radius: 10px;
    transition: transform 0.3s;
    cursor: pointer;
    text-align: left;
    display: flex;
    flex-direction: column;
  }
  
  .related-card:hover {
    transform: translateY(-5px);
  }
  
  .related-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
  }
  
  .related-card h3 {
    font-size: 1rem;
    margin: 0.8rem;
    font-weight: 600;
    color: #333;
  }
  
  .related-card p {
    font-size: 0.85rem;
    margin: 0 0.8rem 1rem;
    color: #666;
  }
  
  /* Responsive */
  @media (max-width: 1024px) {
    .related-card img {
      height: 200px;
    }
    .related-mockups {
    padding: 3rem 5rem;
  }
  }
  @media (max-width: 768px) {
    .related-container h2 {
      font-size: 1.6rem;
    }
    .related-card img {
      height: 200px;
    }
    .related-grid {
      gap: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .related-mockups {
      padding: 2rem 1rem;
    }
    .related-container h2 {
      font-size: 1.4rem;
    }
    .related-card img {
      height: 250px;
    }
    .related-card h3 {
      font-size: 0.95rem;
    }
  }
  
  