@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;
  }
.span1 {
    color: #f83600;
}

/* Container */
.mockup-main {
    max-width: 1600px;
    margin: 40px auto;
    padding: 0 20px;
  }
  
  /* Breadcrumbs */
  .breadcrumbs {
    font-size: 14px;
    background: #fafafa;
  border-bottom: 1px solid #eee;
    color: #000000;
    margin-bottom: 20px;
    padding: 1rem 3rem;
  }
  
  .breadcrumbs a {
    color: #f83600;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .breadcrumb span {
    margin: 0 8px;
    color: #333;
      font-weight: 400;
  }
  
  /* Main Content: Two-column layout */
  .mockup-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 50px;
  }
  
  /* Left: Preview Image */
  #mockup-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    border-radius: 12px;
  }
  
  #mockup-image img {
    border-radius: 12px;
    max-width: 100%;
    height: auto;
    display: block;
  }

  @media (max-width: 992px) {
    #mockup-image {
      min-width: 0;
      width: 100%;
      margin-bottom: 24px;
      justify-content: center;
    }
    #mockup-image img {
      width: 100%;
      max-width: 500px;
      height: auto;
    }
  }

  @media (max-width: 576px) {
    #mockup-image img {
      max-width: 100%;
      width: 100%;
      height: auto;
    }
  }
  
  /* Right: Details */
  .mockup-details {
    flex: 1;
    min-width: 300px;
  }
  
  .mockup-details h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: left;
  }
  
  .mockup-details p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 0.8rem;
  }
  
  .mockup-details a {
    display: inline-block;
    margin-top: 15px;
    background: #000000;
    color: #fff;
    margin-top: 20px;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 400;
    transition: 0.3s ease;
  }
  
  .mockup-details a:hover {
    background: #f83600;
  }
  
  /* Related Mockups Section */
  .related-container {
    width: 100%;
    background-color: #f9f9f9;
    margin: 0 auto;
  }

  .related-mockups {
    background: #f9f9f9;
    max-width: 1600px;
    margin: 0 auto;
    padding: 3rem;
    text-align: center;
  }

  .related-mockups h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1a1a1a;
  }
  
  .related-mockups .mockup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .related-mockups .mockup-card {
    border-radius: 12px;
    text-align: left;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .related-mockups .mockup-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 20px;
  }
  
  .related-mockups .mockup-card h4 {
    font-size: 1rem;
    margin: 0.8rem;
    font-weight: 600;
    color: #333;
  }
  
  .related-mockups .mockup-card:hover {
    transform: translateY(-5px);
  }
  
  /* Responsive Adjustments */

  @media (max-width: 1440px) {
    
    .mockup-main {
      padding: 0 150px;
    }
    .related-mockups {
      padding: 3rem 150px;
    }
  }
  
  /* Tablets */
  @media (max-width: 992px) {
    .mockup-content {
      flex-direction: column;
      align-items: center;
    }
    .mockup-preview, .mockup-details {
      width: 100%;
    }
    .mockup-main {
      padding: 0 20px;
    }
    .related-mockups {
      padding: 3rem 20px;
    }
  }
  
  /* Mobile */
  @media (max-width: 576px) {
    .mockup-details h2 {
      font-size: 1.5rem;
    }
    .mockup-details p {
      font-size: 0.95rem;
    }
    .related-mockups .mockup-card img {
      height: 250px;
    }
    .breadcrumbs{
        font-size: 0.85rem;
          padding: 0.8rem 1.5rem;
      }
      .related-mockups {
        padding: 0 20px;
  }
  .related-mockups .mockup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
  }
}
  
  
/* Styles for tags inside .mockup-details */
/* Tags container */
#tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1px;
    text-align: left;
    margin: 1rem 0;
  }
  
  /* Individual tag styles */
  #tags-list .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;
  }
  
  #tags-list .tag:hover {
    background: #f83600;
  color: #fff;
  }
  
  /* Responsive adjustments */
  @media (max-width: 576px) {
    #tags-list {
      justify-content: left;
    }
    #tags-list .tag {
      font-size: 0.85rem;
    }
  }
  
  /* Center Google Ads container */
.adsbygoogle {
  display: block;
  margin: 40px auto;  /* centers horizontally */
  text-align: center;
  max-width: 100%;
}

/* Optional: make sure it doesn’t stretch too wide on large screens */
@media (min-width: 1024px) {
  .adsbygoogle {
    width: 70%;  /* adjust this as needed (60–80% looks good) */
  }
}

/* Mobile optimization */
@media (max-width: 768px) {
  .adsbygoogle {
    width: 90%;
  }
}