/**
 * Dealer Quick Order App layout styles.
 */

.dqoa-app-shell {
  width: calc(100vw - 128px);
  max-width: 1600px;
  min-height: calc(100vh - 48px);
  margin-top: 24px;
  margin-bottom: 24px;
  margin-left: max(64px, calc((100vw - 1600px) / 2));
  margin-right: max(64px, calc((100vw - 1600px) / 2));
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) 370px;
  background: var(--dqoa-soft);
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.08);
}
.dqoa-sidebar {
  grid-column: 1;
}

.dqoa-main {
  grid-column: 2;
  min-width: 0;
  padding: 40px 30px;
  background: linear-gradient(180deg, #f8fafc 0%, #f3f5f8 100%);
}

.dqoa-cart-panel,
.dqoa-cart-sidebar,
.dqoa-cart-area {
  grid-column: 3;
}

.dqoa-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.dqoa-topbar h2 {
  margin: 0;
  font-size: 44px;
  line-height: 1;
  color: var(--dqoa-dark);
}

.dqoa-topbar p {
  margin: 8px 0 0;
  color: var(--dqoa-muted);
  font-size: 18px;
  line-height: 1.4;
}

.dqoa-user-box {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--dqoa-border);
  background: var(--dqoa-white);
  color: var(--dqoa-dark);
  font-size: 18px;
}

.dqoa-search-section {
  background: var(--dqoa-white);
  border: 1px solid var(--dqoa-border);
  border-radius: 22px;
  padding: 12px;
  margin-bottom: 22px;
}

.dqoa-search-section input {
  width: 100%;
  min-height: 56px;
  border: 1px solid #d1d5db;
  border-radius: 16px;
  padding: 0 18px;
  font-size: 18px;
}

.dqoa-category-section {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.dqoa-category-filter {
  min-height: 42px;
  border: 1px solid var(--dqoa-red);
  background: transparent;
  color: var(--dqoa-red);
  border-radius: 12px;
  padding: 0 18px;
  font-size: 17px;
  cursor: pointer;
}

.dqoa-category-filter:hover,
.dqoa-category-filter.dqoa-active {
  background: var(--dqoa-red);
  color: #ffffff;
}

.dqoa-app-section {
  display: none;
}

.dqoa-app-section.dqoa-active-section {
  display: block;
}
/**
 * Elementor container override for Dealer App page.
 */
.elementor .dqoa-app-shell {
  margin-left: auto;
  margin-right: auto;
}

.elementor .e-con-inner:has(.dqoa-app-shell) {
  max-width: none !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/**
 * Desktop fixed app layout.
 * Header/search/category/cart/sidebar stay visible.
 * Product grid area scrolls naturally.
 */
@media (min-width: 1025px) {
  .dqoa-app-shell {
    height: calc(100vh - 48px);
    min-height: calc(100vh - 48px);
  }

  .dqoa-sidebar,
  .dqoa-cart-panel {
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
  }
  .dqoa-sidebar {
    padding-bottom: 110px;
  }

  .dqoa-main {
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  #dqoa-section-quick-order.dqoa-active-section {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
  }

  .dqoa-topbar,
  .dqoa-search-section,
  .dqoa-category-section {
    flex-shrink: 0;
  }

  #dqoa-product-results {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: max-content;
    align-content: start;
    gap: 24px;
    height: auto;
    max-height: 100%;
    min-height: 0;
    overflow-y: auto;
    padding-right: 8px;
    padding-bottom: 30px;
  }

  #dqoa-product-results::-webkit-scrollbar {
    width: 6px;
  }

  #dqoa-product-results::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 999px;
  }
}
/**
 * Desktop product area with fixed Load More footer.
 */
@media (min-width: 1025px) {
  .dqoa-app-shell {
    height: calc(100vh - 48px);
    min-height: calc(100vh - 48px);
  }

  .dqoa-sidebar,
  .dqoa-cart-panel {
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
  }

  .dqoa-main {
    height: 100%;
    overflow: hidden;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
  }

  #dqoa-section-quick-order.dqoa-active-section {
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    min-height: 0;
    overflow: hidden;
  }

  .dqoa-search-section,
  .dqoa-category-section {
    flex-shrink: 0;
  }

  #dqoa-product-results {
    min-height: 0;
    overflow-y: auto;
    align-content: start;
    padding-right: 8px;
    padding-bottom: 22px;
  }

  .dqoa-load-more-wrap {
    position: sticky;
    bottom: 0;
    z-index: 20;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 14px 0 18px;
    background: linear-gradient(
      180deg,
      rgba(245, 247, 250, 0.2) 0%,
      #f5f7fa 45%,
      #f5f7fa 100%
    );
  }

  #dqoa-load-more-products {
    min-width: 230px;
    min-height: 46px;
  }
}
