/* ==========================================================================
   HOMEPAGE STYLES (Separate from category.css for independent customization)
   ========================================================================== */

/* Homepage Header */
.homepage-header {
  position: relative;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100%;
  height: 87px;
  margin-bottom: 15px;
  padding: 0 !important;
}

/* Homepage Title */
.homepage-title {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 64px;
  line-height: 87px;
  letter-spacing: -0.07em;
  color: #1A1A1A;
  margin: 0;
  white-space: nowrap;
}

/* Subscribe Button Container */
.homepage-subscribe-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
}

/* Subscribe Text */
.homepage-subscribe-text {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #1A1A1A;
}



/* Homepage Title Link (Text + Circle) */
.homepage-subscribe-btn {
    background: transparent; /* Ensure no box background */
}


.homepage-subscribe-circle {
  width: 50px;
  height: 50px;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
}

.homepage-subscribe-circle svg {
  width: 50px;
  height: 50px;
  display: block;
}

.homepage-subscribe-circle svg circle,
.homepage-subscribe-circle svg path {
  stroke: #1A1A1A !important;
  fill: #1A1A1A !important;
}

.homepage-subscribe-circle svg circle {
  fill: none !important;
}

/* Pagination Controls */
.homepage-pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 40px;
  width: 100%;
  position: relative;
}

.homepage-nav-btn {
  width: 50px;
  height: 50px;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  cursor: pointer;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.homepage-nav-btn:focus {
  outline: none !important;
}

.homepage-nav-btn:first-child {
  position: absolute;
  left: 0;
}

.homepage-nav-btn:last-child {
  position: absolute;
  right: 0;
}

.homepage-nav-btn:disabled {
  cursor: not-allowed;
}

.homepage-nav-btn:disabled svg circle {
  stroke-opacity: 0.3;
}

.homepage-nav-btn:disabled svg path {
  stroke-opacity: 0.3;
}

.homepage-nav-btn svg {
  width: 50px;
  height: 50px;
  display: block;
}

/* Grid row alignment - ensure sections fill equal heights */


/* Responsive adjustments */
@media (max-width: 1024px) {
  .homepage-title {
    font-size: 48px;
    line-height: 60px;
  }
}

@media (max-width: 720px) {
  .homepage-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px;
    height: auto;
    margin-bottom: 40px;
  }
  
  .homepage-title {
    font-size: 36px;
    line-height: 44px;
  }
}
