/* ==========================================================================
   CUSTOM GLOBAL STYLES
   Path: astra-child/assets/css/custom-global-styles.css
   Description: Global overrides and structural styles that complement Astra's theme.
   All colors respect the brand palette: accent #e5456d, text #2d2b3a, grey #f9f9f9.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. GLOBAL PRODUCT TITLE CLAMPING (2 lines fixed)
   Ensures consistent card heights across sliders and shop grids.
   -------------------------------------------------------------------------- */
.product-title a,
.woocommerce-loop-product__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  line-clamp: 2 !important;
  box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  line-height: 1.3 !important;
  height: 2.8em !important;
  max-height: calc(1.3em * 2) !important;
  white-space: normal !important;
}

/* --------------------------------------------------------------------------
   2. OWL CAROUSEL NAVIGATION POSITION (if used)
   -------------------------------------------------------------------------- */
.owl-nav {
  position: absolute;
  top: -60px;
  right: 23px;
}

/* --------------------------------------------------------------------------
   3. SEARCH BAR INPUT RESPONSIVE ADJUSTMENTS
   Inherits font-family from theme – only width is customized.
   -------------------------------------------------------------------------- */
.wp-block-search__input {
  width: 400px; /* Desktop default */
  padding-top: 5px;
  padding-bottom: 5px;
}

@media (max-width: 767px) {
  .wp-block-search__input {
    width: 300px; /* Tablet width */
  }
}

@media (max-width: 480px) {
  .wp-block-search__input {
    width: 250px; /* Mobile width */
  }
}

/* --------------------------------------------------------------------------
   4. ASTRA HEADER BORDERS & OFFCANVAS LOGO ADJUSTMENTS
   Removes border-bottom on tablet/mobile for cleaner look.
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .ast-primary-header-bar,
  .ast-below-header-bar {
    border-bottom: 0 !important;
    box-shadow: none !important;
  }
}

@media (max-width: 767px) {
  .offcanvas-logo-wrap img {
    width: 90px !important;
    margin-top: -50px;
  }
}

/* --------------------------------------------------------------------------
   5. HEADER WISHLIST ICON & COUNTER BADGE
   Colors: icon uses text color #2d2b3a, badge uses accent #e5456d.
   -------------------------------------------------------------------------- */
.custom-header-wishlist-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  color: #2d2b3a !important; /* Brand text color */
  padding: 0 4px;
}

.custom-header-wishlist-link:hover {
  color: #e5456d !important; /* Accent on hover */
}

.wishlist-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* Red counter badge positioned at top-right of heart icon */
.wishlist-counter-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background-color: #e5456d; /* Accent color */
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
