/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

 .pagy-stone-theme .pagy.series-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.pagy-stone-theme .pagy.series-nav a {
  font-family: theme('fontFamily.cinzel');
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding: 0.5rem 0.75rem;
  border: 1px solid theme('colors.stone.200');
  color: theme('colors.stone.500');
  text-decoration: none;
  transition: all 0.15s;
}

.pagy-stone-theme .pagy.series-nav a:not([aria-disabled="true"]):hover {
  border-color: theme('colors.stone.900');
  color: theme('colors.stone.900');
}

/* Current page */
.pagy-stone-theme .pagy.series-nav a[aria-current="page"] {
  border-color: theme('colors.stone.900');
  background: theme('colors.stone.900');
  color: white;
}

/* Disabled prev/next (start/end of list) */
.pagy-stone-theme .pagy.series-nav a[aria-disabled="true"]:not([aria-current="page"]) {
  border-color: theme('colors.stone.100');
  color: theme('colors.stone.300');
  cursor: not-allowed;
  pointer-events: none;
}


  /* Mobile (Default) */
  .product_image_container, .fallback_image_container {
    min-height: 700px;
  }
  .main_product_image {
    max-height: 384px;
  }

  /* Tablet (768px and up) */
  @media (min-width: 768px) {
    .product_image_container, .fallback_image_container {
      min-height: 520px;
    }
    .main_product_image {
      min-height: 480px;
    }
  }

  /* Desktop (1024px and up) */
  @media (min-width: 1024px) {
    .product_image_container, .fallback_image_container {
      min-height: 600px;
    }
    .main_product_image {
      min-height: 500px;
    }
  }
