/*
Theme Name: GBA Dealer Auto Parts Blocks
Theme URI: https://www.gbaguns.com/
Description: A WooCommerce block child theme based on Auto Parts and Car Accessories 1.0.8, adapted for dealer storefronts.
Author: GBA Dealers
Version: 1.0.0
Template: auto-parts-and-car-accessories
Text Domain: gba-dealer-auto-parts
Requires at least: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
*/

:root {
  --gba-product-image-size: 400px;
}

/* Preserve the parent theme's visual language while using dealer branding. */
.gba-dealer-header .header-top {
  min-height: 34px;
}

.gba-dealer-header .header-top a,
.gba-dealer-header .header-top p {
  text-decoration: none;
  white-space: nowrap;
}

.gba-dealer-header .header-bottom {
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.08);
}

.gba-dealer-header .header-logo-box .wp-block-site-logo img {
  width: auto;
  max-width: 230px;
  max-height: 72px;
  object-fit: contain;
}

.gba-dealer-header .header-menu-box nav li a.wp-block-navigation-item__content:hover,
.gba-dealer-header .header-menu-box nav li.current-menu-item a.wp-block-navigation-item__content {
  border-color: var(--wp--preset--color--button-color);
}

.gba-dealer-header .header-search {
  position: relative;
}

.gba-dealer-header .header-search .wp-block-search__inside-wrapper {
  min-height: 42px;
  background: #fff;
}

.gba-dealer-header .header-search .wp-block-search__button {
  color: var(--wp--preset--color--secondary);
  background: var(--wp--preset--color--button-color) !important;
}

.gba-dealer-header .header-woo-btns {
  min-width: max-content;
}

/* Fast autocomplete dropdown attached to the editable product-search block. */
.gba-block-search-results {
  position: absolute;
  z-index: 1000;
  top: calc(100% + 6px);
  right: 0;
  left: 0;
  max-height: min(520px, 70vh);
  overflow-y: auto;
  border: 1px solid #d9dee3;
  border-radius: 5px;
  color: #17212b;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.2);
}

.gba-block-search-result {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  min-height: 68px;
  padding: 7px 10px;
  border-bottom: 1px solid #edf0f2;
  color: #17212b !important;
  text-decoration: none !important;
}

.gba-block-search-result:hover,
.gba-block-search-result.is-active {
  background: #f3f6f4;
}

.gba-block-search-result img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.gba-block-search-result-copy {
  min-width: 0;
}

.gba-block-search-result-copy strong,
.gba-block-search-result-copy small {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.gba-block-search-result-copy strong {
  font-size: 13px;
  line-height: 1.3;
}

.gba-block-search-result-copy small {
  margin-top: 3px;
  color: #68727d;
  font-size: 11px;
}

.gba-block-search-result-price {
  color: #b91c1c;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.gba-block-search-message,
.gba-block-search-view-all {
  display: block;
  padding: 13px;
  font-size: 13px;
}

.gba-block-search-view-all {
  color: var(--wp--preset--color--secondary) !important;
  background: var(--wp--preset--color--button-color);
  font-weight: 700;
  text-align: center;
  text-decoration: none !important;
}

/* Product template: parent-theme layout with a controlled gallery size. */
.single-product .single-product-content {
  align-items: flex-start;
  gap: clamp(32px, 5vw, 72px);
}

.single-product .single-product-left {
  flex-basis: 420px !important;
  max-width: 420px;
}

.single-product .wp-block-woocommerce-product-image-gallery,
.single-product .woocommerce-product-gallery,
.single-product .woocommerce-product-gallery__wrapper,
.single-product .woocommerce-product-gallery__image {
  max-width: var(--gba-product-image-size);
}

.single-product .woocommerce-product-gallery .flex-viewport {
  max-width: var(--gba-product-image-size);
  max-height: var(--gba-product-image-size) !important;
}

.single-product .woocommerce-product-gallery__image img {
  display: block;
  width: 100% !important;
  max-width: var(--gba-product-image-size);
  height: auto !important;
  max-height: var(--gba-product-image-size);
  margin-inline: auto;
  object-fit: contain;
}

.single-product .single-product-right {
  min-width: 0;
}

.single-product .single-product-right .wp-block-post-title {
  margin-top: 0;
}

/* Catalog and related products use consistent square image areas. */
.products-box .wc-block-components-product-image img,
.related-products .wc-block-components-product-image img,
.wp-block-woocommerce-product-collection .wc-block-components-product-image img {
  display: block;
  width: 100%;
  max-width: var(--gba-product-image-size);
  height: auto;
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  object-fit: contain;
}

.products-box li.wc-block-product,
.related-products li.wc-block-product {
  padding: 14px 14px 18px;
  border: 1px solid #e2e6e9;
  border-radius: 6px;
  background: #fff;
}

/* The current filter-based homepage is rendered as page content only. */
.gba-filter-home {
  width: 100%;
  margin: 0;
  padding: 0;
}

.gba-filter-home > .wp-block-post-content {
  margin-block-start: 0;
}

/* Editable dealer footer in the parent theme's rounded dark style. */
.gba-dealer-footer .wp-block-site-logo img {
  width: auto;
  max-width: 300px;
  max-height: 105px;
  object-fit: contain;
}

.gba-dealer-footer .wp-block-navigation-item__content:hover {
  color: var(--wp--preset--color--button-color) !important;
}

@media (max-width: 1100px) {
  .gba-dealer-header .header-btm-middle {
    flex-wrap: wrap !important;
  }

  .gba-dealer-header .header-logo-box {
    flex-basis: 25% !important;
  }

  .gba-dealer-header .header-menu-box {
    flex-basis: 65% !important;
  }

  .gba-dealer-header .header-btn-box {
    flex-basis: 100% !important;
  }

  .gba-dealer-header .header-top-box {
    justify-content: center !important;
  }
}

@media (max-width: 767px) {
  .gba-dealer-header .header-top-store {
    display: none;
  }

  .gba-dealer-header .header-top-boxes {
    flex-wrap: nowrap !important;
  }

  .gba-dealer-header .header-logo-box,
  .gba-dealer-header .header-menu-box,
  .gba-dealer-header .header-btn-box {
    flex-basis: 100% !important;
  }

  .gba-dealer-header .header-logo-box .logo-box {
    text-align: left !important;
  }

  .gba-dealer-header .header-logo-box .wp-block-site-logo img {
    max-height: 58px;
  }

  .gba-dealer-header .header-top-box {
    flex-direction: row !important;
    gap: 12px !important;
  }

  .gba-dealer-header .header-search {
    width: 100% !important;
  }

  .single-product .single-product-content {
    display: block;
  }

  .single-product .single-product-left {
    width: 100%;
    max-width: var(--gba-product-image-size);
    margin-inline: auto;
  }

  .single-product .single-product-right {
    margin-top: 28px;
  }

  .gba-block-search-result {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .gba-block-search-result-price {
    grid-column: 2;
  }
}

