/* Reset default styles */
@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;
  }
/* Hero Section */
.hero {
  padding: 4rem 2rem;
  text-align: center;
  background-image: url(https://images.unsplash.com/photo-1667180309946-ee0efe2e5dca?q=80&w=3732&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  }
  
  .hero-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  }
  
  .hero h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  }
  
  .hero p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ffffff;
  }
  
  /* Responsive Styles */
  @media (max-width: 1024px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  }
  
  @media (max-width: 768px) {
  .hero {
    padding: 3rem 1.5rem;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 0.95rem;
  }
  }
  
  @media (max-width: 480px) {
  .hero {
    padding: 2rem 1rem;
  }
  
  .hero h1 {
    font-size: 1.5rem;
  }
  
  .hero p {
    font-size: 0.9rem;
  }
  }

/* Search Section */
.search-section {
  padding: 2rem;
  text-align: center;
}

.search-container {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  gap: 0.5rem;
}

.search-container input {
  flex: 1;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  border-style: solid;
  border-width: 1px;
  border-radius: 30px;
}
#searchInput::placeholder {
  color: #b2b2b2;
  font-weight: 300;
}

.search-container button {
  padding: 0.8rem 1.2rem;
  font-size: 1rem;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s;
}

.search-container button:hover {
  background: #ffffff;
  color: rgb(0, 0, 0);
}

/* Responsive */
@media (max-width: 480px) {
  .search-container {
    flex-direction: column;
  }
  .search-container button {
    width: 100%;
    margin-top: 10px;
  }
}



/* Trending Categories */
.trending-section {
    background: #f9f9f9;
    padding: 3rem 10rem;
    text-align: center;
  }
  
  .trending-container {
    max-width: 1600px;
    margin: 0 auto;
  }
  
  .trending-container h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1a1a1a;
  }
  
  /* Grid layout */
  .trending-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
  }
  
  /* Category Card */
  .category-card {
    border-radius: 20px;
    transition: transform 0.3s;
    cursor: pointer;
    text-align: center;
    display: flex;
    flex-direction: column;
  }
  
  .category-card:hover {
    transform: translateY(-5px);
  }
  
  .category-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 20px;
  }
  
  .category-card h3 {
    font-size: 1rem;
    margin: 0.8rem 0;
    color: #000000;
    font-weight: 600;
  }
  
  /* Responsive Breakpoints */
  @media (max-width: 1024px) {
    .trending-container h2 {
      font-size: 1.8rem;
    }
    .category-card img {
      height: 130px;
    }
  }
  
  @media (max-width: 768px) {
    .trending-container h2 {
      font-size: 1.6rem;
    }
    .trending-grid {
      gap: 1rem;
    }
    .category-card img {
      height: 120px;
    }
    .category-card h3 {
      font-size: 0.95rem;
    }
  }
  
  @media (max-width: 480px) {
    .trending-section {
      padding: 2rem 1rem;
    }
    .trending-container h2 {
      font-size: 1.4rem;
    }
    .category-card img {
      height: 130px;
    }
    .category-card h3 {
      font-size: 0.9rem;
    }
  }

/* All Mockups Section */
.mockups-section {
    background: #fff;
    padding: 3rem 10rem;
  }
  
  .mockups-container {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
  }
  
  .mockups-container h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1a1a1a;
  }
  
  /* Grid layout */
  .mockups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
  }


/* Mockup Card */
.mockup-card {
    background: #fdfdfd;
    border-radius: 12px;
    transition: transform 0.3s;
    text-align: left;
    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;
    color: #333;
    margin-bottom: 0.3rem;
    font-weight: 600;
  }
  
  .mockup-card p {
    font-size: 0.9rem;
    color: #666;
  }
/* Responsive */
@media (max-width: 1024px) {
  .mockups-section {
    background: #fff;
    padding: 3rem 3rem;
  }
    .mockups-container h2 {
      font-size: 1.8rem;
    }
    .mockup-card img {
      height: 200px;
    }
  }
  
  @media (max-width: 768px) {
    .mockups-container h2 {
      font-size: 1.6rem;
    }
    .mockups-grid {
      gap: 1rem;
    }
    .mockup-card img {
      height: 200px;
    }
  }
  
  @media (max-width: 480px) {
    .mockups-section {
      padding: 2rem 1rem;
    }
    .mockups-container h2 {
      font-size: 1.4rem;
    }
    .mockup-card img {
      height: 250px;
    }
    .mockup-card h3 {
      font-size: 1rem;
    }
    .mockup-card p {
      font-size: 0.85rem;
    }
  }

/* Load More Button */
.load-more {
    margin-top: 2rem;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 30px;
    background: #000000;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .load-more:hover {
    background: #f83600;
  }
  
  .load-more:disabled {
    background: #ccc;
    cursor: not-allowed;
  }



  .cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 800px;
    background: #F9F9F9;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border-radius: 15px;
    display: none;
    z-index: 1000;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .cookie-popup p {
    margin-bottom: 15px;
    color: #333;
    font-size: 1rem;
  }
  .cookie-buttons {
    margin-top: 10px;
  }
  .cookie-buttons button {
    margin: 0 5px;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  #acceptCookies {
    background-color: #f83600;
    color: white;
  }
  #rejectCookies {
    background-color: #000000;
    color: white;
  }

  @media (max-width: 480px) {
    .cookie-popup p {
      margin-bottom: 15px;
      color: #333;
      font-size: 0.8rem;
    }
  }

  /* Responsive Submit Mockup Section */
.submit-mockup-section {
  background-image: url(https://images.unsplash.com/photo-1662560884429-ab43eb250446?q=80&w=3732&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  margin: 20px auto;
  max-width: 1600px;
  display: block;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.submit-mockup-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 0;
  border-radius: 20px;
}
.submit-mockup-section > * {
  position: relative;
  z-index: 1;
}

.submit-mockup-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.submit-mockup-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.submit-btns {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 400;
  color: #000000;
  background-color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.submit-btns:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .submit-mockup-section h2 {
    font-size: 1.7rem;
    font-weight: 600;
  }
  .submit-mockup-section p {
    font-size: 1rem;
  }
  .submit-btns {
    font-size: 1rem;
    padding: 12px 25px;
  }
  .submit-mockup-section {
    margin: 20px;
  }
}

/* Newsletter Section */
.newsletter-section {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
  margin: 40px auto;
  max-width: 1200px;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}

.newsletter-container h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: #1a1a1a;
}

.newsletter-container p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #555;
}

.newsletter-container form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-container input[type="email"] {
  padding: 12px 18px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 30px;
  flex: 1;
  min-width: 250px;
  max-width: 400px;
}

.newsletter-container button {
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: 500;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-container button:hover {
  background: #f83600;
}

/* Newsletter Success Popup */
.newsletter-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  text-align: center;
  z-index: 2000;
}

.newsletter-popup p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #333;
}

.newsletter-popup button {
  padding: 10px 20px;
  border: none;
  border-radius: 30px;
  background: #000;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-popup button:hover {
  background: #f83600;
}

/* Responsive Newsletter */
@media (max-width: 768px) {
  .newsletter-container h2 {
    font-size: 1.6rem;
  }
  .newsletter-container p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .newsletter-container h2 {
    font-size: 1.4rem;
  }
  .newsletter-container input[type="email"] {
    min-width: 100%;
  }
  .newsletter-container form {
    flex-direction: column;
  }
  .newsletter-container button {
    width: 100%;
  }
}