.showcase-card {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  overflow: hidden;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.product-sticky-nav {
  display: none;
}

.sticky-mobile-menu-toggle, .sticky-mobile-menu-panel {
  display: none;
}

.brand-arrow {
  color: #111;
}

.brand-arrow:hover:not(:disabled) {
  color: #666;
}

.brand-arrow:disabled,
.brand-arrow.is-disabled {
  color: #cfcfcf;
  opacity: 1;
}

@media (max-width: 1280px) {

  .header-logo-image {
    width: 205px;
  }

  .nav-menu {
    gap: 26px;
  }

  .category-item {
    gap: 10px;
  }

  .category-icon {
    font-size: 21px;
  }

  .contact-text {
    padding-left: 18%;
  }
}

@media (max-width: 1024px) {

  .navbar-inner {
    height: 72px;
    min-height: 72px;
  }

  .header-logo-image {
    width: 185px;
  }

  .nav-menu {
    gap: 18px;
  }

  .nav-menu a {
    font-size: 10px;
  }

  .hero {
    height: 460px;
    min-height: 0;
    max-height: none;
  }

  .hero-title {
    font-size: 50px;
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-item {
    min-height: 70px;
    border-bottom: 1px solid #eee;
  }

  .category-item:nth-child(3n)::after {
    display: none;
  }

  .brands-row {
    gap: 20px;
  }

  .brand-item span {
    font-size: 13px;
  }

  .brand-item img {
    width: 37px;
    height: 37px;
  }

  .showcase-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-cta-container {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 35px;
  }

  .contact-text {
    padding-left: 0;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .product-page-breadcrumb {
    display: none;
  }

  .product-sticky-nav {
    position: sticky;
    top: 0;
    z-index: 2000;
    width: 100%;
    min-height: 54px;
    padding: 9px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid #ddd;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .sticky-back-link {
    height: 36px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    flex-shrink: 0;
    background: #111;
    color: #fff;
    border: 1px solid #111;
    font-size: 9px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
  }

  .sticky-back-link i {
    font-size: 9px;
  }

  .sticky-divider {
    flex-shrink: 0;
    color: #aaa;
    font-size: 9px;
  }

  .sticky-home-link {
    flex-shrink: 0;
    color: #111;
    font-size: 9px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
  }

  .sticky-slash {
    flex-shrink: 0;
    color: #aaa;
    font-size: 9px;
  }

  .sticky-current {
    min-width: 0;
    color: #888;
    font-size: 9px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 820px) {

  .topbar {
    display: none;
  }

  #site-header {
    position: relative;
    z-index: 3000;
  }

  .navbar, .navbar-inner {
    position: relative;
    z-index: 3001;
  }

  .navbar-inner {
    height: 68px;
    min-height: 68px;
  }

  .header-logo-image {
    width: 160px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 14px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-top: 1px solid #efefef;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 3100;
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

.nav-menu > a {
  width: 100%;
  padding: 14px 0;
  border: 0;
  font-size: 12px;
}

.nav-menu a::after {
  display: none;
}

.nav-menu-company {
  width: 100%;
  margin-top: 10px;
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #d9d9d9;
}

.nav-menu-company a {
  width: 100%;
  padding: 14px 0;
  border: 0;
  font-size: 12px;
}

  .hero-overlay {
    background: transparent !important;
  }

  .hero-image {
    filter: none !important;
  }

  .product-sticky-nav.is-compact {
    width: 100%;
    height: 46px;
    min-height: 46px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border-bottom: 1px solid #e9e9e9;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 3200;
  }

  .product-sticky-nav.is-compact .sticky-back-link {
    height: 34px;
    min-height: 34px;
    margin: 0;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    flex-shrink: 0;
    font-size: 8px;
    white-space: nowrap;
  }

  .product-sticky-nav.is-compact .sticky-back-link i {
    font-size: 8px;
  }

  .product-sticky-nav.is-compact .sticky-divider {
    display: inline-block;
    flex-shrink: 0;
    color: #aaa;
    font-size: 8px;
  }

  .product-sticky-nav.is-compact .sticky-home-link {
    display: inline-block;
    flex-shrink: 0;
    color: #111;
    font-size: 8px;
    font-weight: 700;
    white-space: nowrap;
  }

  .product-sticky-nav.is-compact .sticky-slash {
    display: inline-block;
    flex-shrink: 0;
    color: #aaa;
    font-size: 8px;
  }

  .product-sticky-nav.is-compact .sticky-current {
    min-width: 0;
    display: block;
    flex: 1;
    color: #888;
    text-align: left;
    font-size: 8px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .product-sticky-nav.is-compact .sticky-mobile-menu-toggle {
    width: 34px;
    height: 34px;
    margin-left: auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #111;
    font-size: 20px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .product-sticky-nav.is-compact .sticky-mobile-menu-toggle i {
    pointer-events: none;
  }

  .product-sticky-nav.is-compact .sticky-mobile-menu-toggle:active {
    transform: scale(0.94);
  }

  .product-sticky-nav.is-compact .sticky-mobile-menu-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100vh - 46px);
    overflow-y: auto;
    padding: 6px 20px 18px;
    display: none;
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.1);
    overscroll-behavior: contain;
    z-index: 3300;
  }

  .product-sticky-nav.is-compact.menu-open .sticky-mobile-menu-panel {
    display: flex;
    flex-direction: column;
  }

  .sticky-mobile-menu-panel ul {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    list-style: none;
  }

  .sticky-mobile-menu-panel li {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .sticky-mobile-menu-panel a {
    width: 100%;
    min-height: 46px;
    padding: 0 4px;
    display: flex;
    align-items: center;
    color: #111;
    border-bottom: 1px solid #ededed;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.02em;
  }

  .sticky-mobile-menu-panel li:last-child a, .sticky-mobile-menu-panel > a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 768px) {

  .hero {
    height: 520px;
    min-height: 520px;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-container {
    align-items: flex-end;
    padding-bottom: 50px;
  }

  .hero-content {
    max-width: 430px;
  }

  .hero-eyebrow {
    margin-bottom: 13px;
    font-size: 10px;
  }

  .hero-title {
    font-size: clamp( 38px, 11vw, 52px );
  }

  .hero-description {
    margin: 16px 0 20px;
    font-size: 12px;
  }

  .desktop-break {
    display: none;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    min-height: 44px;
    padding: 0 17px;
    font-size: 9px;
  }

  .category-grid {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

  .category-item {
    min-height: 70px;
    justify-content: flex-start;
    padding: 0 22px;
    border-bottom: 1px solid #eee;
  }

  .category-item:nth-child(3n)::after {
    display: block;
  }

  .category-item:nth-child(even)::after {
    display: none;
  }

  .category-item:nth-child(odd)::after {
    display: block;
  }

  .brands-section {
    padding: 27px 0;
  }

  .brands-slider {
    grid-template-columns: 24px 1fr 24px;
    gap: 5px;
  }

  .brands-row {
    display: flex;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 40px;
    padding: 5px 15px;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }

  .brands-row::-webkit-scrollbar {
    display: none;
  }

  .brand-item {
    min-width: 130px;
  }

  .brand-item span {
    font-size: 12px;
  }

  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-section {
    padding: 30px 0;
  }

  .section-header {
    align-items: flex-end;
  }

  .section-header h2 {
    font-size: 12px;
  }

  .view-all {
    font-size: 8px;
  }

  .contact-cta {
    padding: 45px 0;
  }

  .contact-cta-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 29px;
  }

  .contact-text {
    width: 100%;
  }

  .contact-text h2 {
    font-size: 21px;
  }

  .contact-cards {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .footer {
    padding-top: 43px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 25px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-logo-image {
    width: 175px;
  }

  .floating-chat {
    right: 13px;
    bottom: 18px;
  }

  .floating-button {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {

  .header-logo-image {
    width: 145px;
  }

  .hero {
    height: 500px;
    min-height: 500px;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-container {
    padding-bottom: 35px;
  }

  .hero-eyebrow {
    font-size: 9px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-description {
    max-width: 310px;
  }

  .hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions .btn {
    width: 100%;
    padding: 0 11px;
  }

  .category-item {
    padding: 0 14px;
    gap: 10px;
    font-size: 9px;
  }

  .category-icon {
    width: 28px;
    font-size: 19px;
  }

  .product-sticky-nav {
    min-height: 52px;
    padding: 8px 10px;
    gap: 7px;
  }

  .sticky-back-link {
    height: 34px;
    padding: 0 10px;
    font-size: 8px;
  }

  .sticky-back-link i {
    font-size: 8px;
  }

  .sticky-divider, .sticky-home-link, .sticky-slash, .sticky-current {
    font-size: 8px;
  }

  .product-sticky-nav.is-compact {
    height: 46px;
    min-height: 46px;
    padding: 0 7px;
    gap: 5px;
  }

  .product-sticky-nav.is-compact .sticky-back-link {
    height: 34px;
    min-height: 34px;
    padding: 0 9px;
    font-size: 7px;
  }

  .product-sticky-nav.is-compact .sticky-back-link i {
    font-size: 7px;
  }

  .product-sticky-nav.is-compact .sticky-divider, .product-sticky-nav.is-compact .sticky-home-link, .product-sticky-nav.is-compact .sticky-slash, .product-sticky-nav.is-compact .sticky-current {
    font-size: 7px;
  }

  .product-sticky-nav.is-compact .sticky-mobile-menu-toggle {
    width: 32px;
    height: 32px;
    font-size: 19px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-logo-image {
    width: 155px;
  }
}

/* =========================================
   MOBILE BOTTOM SAFE AREA
========================================= */

html {
  background: #0d0d0d;
}

#site-footer,
.footer {
  background: #0d0d0d;
}

@supports (padding: env(safe-area-inset-bottom)) {
  .footer {
    padding-bottom: max(30px, env(safe-area-inset-bottom));
  }
}