:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: white;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Common Section Styles */
section {
  padding: 60px 0;
}

.bg-light {
  background-color: #f7f7f7;
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 10px;
  color: #111111;
}

.section-subtitle {
  text-align: center;
  color: #E31837;
  /* Honda Red */
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 30px;
}

/* Header & Navigation */
header {
  background-color: white;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 70px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  font-weight: bold;
  color: #555555;
  font-size: 15px;
}

.nav-link:hover {
  color: #E31837;
}

.nav-btn {
  background-color: #E31837;
  color: #ffffff;
  padding: 16px;
  border-radius: 25px;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.nav-btn:hover {
  background-color: #b51229;
}

/* Hero Section — full-bleed background image with overlay text */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.hero-image-area {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide-img.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg,
      rgba(0, 0, 0, 0.78) 15%,
      rgba(0, 0, 0, 0.45) 55%,
      rgba(0, 0, 0, 0.15) 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 520px;
  padding: 70px 0;
}

.hero-tag {
  color: #ff5a70;
  font-weight: bold;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
}

.hero-title {
  font-size: 38px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-title span {
  color: #ff5a70;
}

.hero-desc {
  font-size: 16px;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-red {
  background-color: #E31837;
  color: #ffffff;
}

.btn-red:hover {
  background-color: #b51229;
}

.btn-green {
  background-color: #25D366;
  /* WhatsApp Green */
  color: #ffffff;
  margin-left: 20px;
}

.btn-green:hover {
  background-color: #20ba56;
}

/* Highlights Grid */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.highlight-card {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  text-align: center;
}

.highlight-emoji {
  font-size: 32px;
  margin-bottom: 15px;
}

.highlight-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #111111;
}

.highlight-desc {
  font-size: 13px;
  color: #777777;
}

/* Featured Collections Accordion */
.collections-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.collection-item {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.collection-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 24px);
  margin: 12px;
  background-color: #f5f5f5;
  border: none;
  border-radius: 14px;
  padding: 20px 24px;
  cursor: pointer;
  text-align: left;
}

.collection-header.expanded {
  border: 2px solid #E31837;
}

.collection-title {
  font-size: 19px;
  font-weight: bold;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.collection-title .accent {
  color: #E31837;
}

.collection-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #E31837;
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.collection-header.expanded .collection-toggle {
  transform: rotate(45deg);
}

.collection-body {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  padding: 0 24px;
}

.collection-body>* {
  overflow: hidden;
  min-height: 0;
}

.collection-body.expanded {
  grid-template-rows: 1fr;
  padding: 4px 24px 24px;
}

.collection-products {
  padding-top: 6px;
}

.collection-products .no-picks {
  grid-column: 1/-1;
  text-align: center;
  padding: 20px;
  color: #888888;
  font-size: 13px;
}

/* About Us Section */
.about-split {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-img {
  flex: 1;
}

.about-img img {
  width: 100%;
  height: 50%;
  border-radius: 6px;
  object-fit: cover;
}

.about-info {
  flex: 1;
}

.about-info p {
  margin-bottom: 15px;
  color: #555555;
  font-size: 16px;
}

.about-list {
  list-style-type: disc;
  margin-top: 20px;
}

.about-list li {
  margin-bottom: 10px;
  font-weight: bold;
  gap: 10px;
}

hiplus-cat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 50%;
  height: 50%;
  background-color: #ffffff;
  border: 2px solid #e7e7e7;
  border-radius: 30px;
  padding: 12px 14px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s;
  justify-content: center;
}

.hiplus-cat-card:hover {
  border-color: red;
}

.hiplus-cat-card.active {
  border-color: red;
}

.hiplus-cat-icon {
  border-radius: 25px;
  color: #ffffff;
  display: flex;
  align-items: center;
  padding: 20px;
  justify-content: center;
  font-size: 20px;
  border-radius: 25px;
}

.hiplus-cat-label {
  font-size: 14px;
  font-weight: bold;
  color: #111111;
  text-align: center;
  flex: auto;
  text-align: left;
}

.grid-4-hiplus {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hiplus-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}

.hiplus-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.hiplus-img {
  background-color: #f7f7f7;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  overflow: hidden;
}

.hiplus-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hiplus-details {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.hiplus-name {
  font-size: 15px;
  font-weight: bold;
  color: #111111;
  margin-bottom: 6px;
}

.hiplus-desc {
  font-size: 12.5px;
  color: #888888;
  margin-bottom: 10px;
  flex-grow: 1;
}

.hiplus-mfr {
  font-size: 12.5px;
  color: #1a2a6c;
  font-weight: bold;
  margin-bottom: 14px;
}

.hiplus-btns {
  display: flex;
  gap: 8px;
}

.hiplus-btn-price {
  background-color: #eef0f5;
  color: #333333;
  border: none;
}

.hiplus-btn-price:hover {
  background-color: #dfe2ea;
}

.hiplus-btn-details {
  background-color: #1a2a6c;
  color: #ffffff;
  border: none;
}

.hiplus-btn-details:hover {
  background-color: #12204f;
}

/* Product Catalog: Sidebar + Grid layout */
.catalog-layout {
  display: flex;
  align-items: flex-start;
  gap: 30px;

}

.catalog-sidebar {
  width: 250px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  height: 100px;
  background-color: #ffffff;
  border: 2px solid #e7e7e7;
  border-radius: 16px;
  padding: 8px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.cat-card:hover {
  border-color: #E31837;
}

.cat-card.active {
  border-color: #E31837;
}

.cat-card-img {
  flex-shrink: 0;
  width: 100px;
  height: 90px;
  border-radius: 6px;
  background-color: #f0f0f0;
  border: 1px solid #e0e0e0;
  object-fit: cover;
  /* add this so photos crop nicely instead of stretching */
}

.cat-card-name {
  font-size: 15px;
  font-weight: bold;
  color: #111111;
}

/* Category sidebar expand/collapse: hide the extra categories until toggled open */
.cat-card-extra {
  display: none;
}

.catalog-sidebar.expanded .cat-card-extra {
  display: flex;
}

.sidebar-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background-color: #ffffff;
  border: 2px solid #e7e7e7;
  border-radius: 16px;
  padding: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: bold;
  color: #555555;
  transition: border-color 0.2s, color 0.2s;
}

.sidebar-toggle:hover {
  border-color: #E31837;
  color: #E31837;
}

.catalog-products {
  flex: 2;
  min-width: 0;
  /* prevents grid overflow inside flex parent */
  position: relative;
  /* anchors the floating carousel arrows to the edges of the grid below */
}

/* Shop by Category (grouped) section — sidebar + grid, circular icon buttons */
.group-catalog-layout {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.group-sidebar {
  width: 220px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.group-cat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  background-color: #ffffff;
  border: 2px solid #e7e7e7;
  border-radius: 14px;
  padding: 14px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.group-cat-card:hover {
  border-color: #E31837;
}

.group-cat-card.active {
  border-color: #E31837;
  background-color: #fff5f6;
}

.group-cat-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E31837, #b51229);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.group-cat-name {
  font-size: 14px;
  font-weight: bold;
  color: #111111;
  line-height: 1.3;
}

/* Navbar Search Bar */
.nav-search-box {
  position: relative;
  flex: 1;
  max-width: 260px;
}

.nav-search-box input {
  width: 100%;
  font: inherit;
  font-size: 14px;
  padding: 9px 14px;
  border: 1.5px solid #dcdcdc;
  border-radius: 20px;
  outline: none;
  color: #333333;
  background-color: #ffffff;
}

.nav-search-box input:focus {
  border-color: #E31837;
}

.nav-search-box input:-webkit-autofill,
.nav-search-box input:-webkit-autofill:hover,
.nav-search-box input:-webkit-autofill:focus {
  -webkit-text-fill-color: #333333;
  -webkit-box-shadow: 0 0 0px 1000px #ffffff inset;
  transition: background-color 5000s ease-in-out 0s;
}

.nav-search-results {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background-color: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  max-height: 340px;
  overflow-y: auto;
  z-index: 150;
}

.nav-search-results.active {
  display: block;
}

.nav-search-result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
}

.nav-search-result-item:hover {
  background-color: #f7f7f7;
}

.nav-search-result-name {
  font-size: 13px;
  font-weight: bold;
  color: #111111;
}

.nav-search-result-model {
  font-size: 11px;
  font-weight: bold;
  color: #E31837;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-search-no-results {
  padding: 16px;
  text-align: center;
  color: #888888;
  font-size: 13px;
}

/* Products Grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.2s;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.product-img {
  background-color: #f7f7f7;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.product-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-details {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-model {
  color: #E31837;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 5px;
}

.product-name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #111111;
}

.product-bullets {
  list-style: none;
  font-size: 13px;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-bullets li {
  margin-bottom: 5px;
}

.product-bullets li::before {
  content: "• ";
  color: #E31837;
  font-weight: bold;
}

/* Carousel Navigation Arrows — float at the left/right edges of the product grid, vertically centered */
.carousel-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin-top: 0;
  pointer-events: none;
  /* lets clicks pass through to product cards; buttons re-enable it below */
  z-index: 5;
}

.nav-btn {
  pointer-events: auto;
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.nav-btn.prev {
  background-color: #d9d9d9;
  color: #555555;
  border: none;
  margin-left: -16px;
  /* floats half outside the left edge of the slide */
}

.nav-btn.prev:hover:not(:disabled) {
  background-color: #c8c8c8;
}

.nav-btn.next {
  background-color: #1a1a1a;
  color: #ffffff;
  margin-right: -16px;
  /* floats half outside the right edge of the slide */
}

.nav-btn.next:hover:not(:disabled) {
  background-color: #333333;
}

.nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.btn-small {
  flex: 1;
  padding: 16px;
  font-size: 14px;
  text-align: center;
  font-weight: bold;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

.product-btns {
  display: flex;
  gap: 16px;
}

.product-btns .btn-small {
  padding: 16px 20px;
  font-size: 14px;
}


.btn-gray-outline {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  color: #555555;
}

.btn-gray-outline:hover {
  background-color: #f0f0f0;
}

.btn-green-fill {
  background-color: #13db5c;
  color: #ffffff;
  border: none;
}

.btn-green-fill:hover {
  background-color: #00b743;
}

/* Contact Owner Section */
.owner-box {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  display: flex;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.owner-info {
  padding: 40px;
}

.owner-role {
  color: #E31837;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.owner-name {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}

.owner-desc {
  color: #666666;
  margin-bottom: 25px;
}

.owner-contacts {
  margin-bottom: 25px;
}

.owner-contact-row {
  margin-bottom: 10px;
  font-size: 15px;
}

.owner-contact-row strong {
  color: #111111;
}

/* Footer Section */
footer {
  background-color: #222222;
  color: #aaaaaa;
  padding: 50px 0 20px 0;
  font-size: 14px;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid #333333;
  padding-bottom: 30px;
  margin-bottom: 20px;
}

.footer-col {
  flex: 1;
}

.footer-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.5;
}

.footer-links {
  list-style: none;
  color: beige;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a:hover {
  color: #E31837;
}

.footer-contact li {
  margin-bottom: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.footer-disclaimer {
  max-width: 50%;
  line-height: 1.4;
  text-align: right;
}

/* Modal Panel */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: #ffffff;
  width: 90%;
  max-width: 650px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #e0e0e0;
  border: none;
  font-size: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background-color: #cccccc;
}

.modal-body {
  padding: 30px;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.modal-img {
  width: 100px;
  height: 100px;
  background-color: #f7f7f7;
  padding: 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.modal-title h2 {
  font-size: 20px;
  margin-bottom: 5px;
}

.modal-section {
  margin-bottom: 20px;
}

.modal-section-title {
  font-size: 15px;
  font-weight: bold;
  color: #E31837;
  margin-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 5px;
}

.modal-desc {
  font-size: 14px;
  color: #555555;
  line-height: 1.5;
}

.modal-table {
  width: 100%;
  border-collapse: collapse;
}

.modal-table td {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 13px;
}

.modal-table tr:last-child td {
  border-bottom: none;
}

.modal-table-label {
  font-weight: bold;
  color: #666666;
  width: 40%;
}

.modal-apps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.modal-app-tag {
  background-color: #f0f0f0;
  color: #555555;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
}

.modal-footer {
  border-top: 1px solid #e0e0e0;
  padding: 20px 30px;
  display: flex;
  gap: 15px;
  background-color: #f9f9f9;
}

.modal-footer .btn {
  flex: 1;
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/*--------------------------------------------------------------
  HI+ Sidebar – Category button icons (all screen sizes)
--------------------------------------------------------------*/
.hiplus-cat-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  padding: 0;
  background: #ffffff;
  border: 1.5px solid #e0e0e0;
  border-radius: 20px;
  cursor: pointer;
  width: 100%;
  max-width: 500px;
  height: 100px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  margin-bottom: 12px;
}

.hiplus-cat-card:hover,
.hiplus-cat-card:focus {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
  border-color: #1a2a6c;
}

.hiplus-cat-card.active {
  border-color: #E31837;
  box-shadow: 0 4px 16px rgba(227, 24, 55, 0.12);
}

.hiplus-cat-icon-wrap {
  width: 100px;
  min-width: 100px;
  height: 90px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  align-self: stretch;
}

.hiplus-cat-icon {
  width: 150px;
  height: 150px;
  object-fit: contain;
  display: block;
}

.hiplus-cat-label {
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  line-height: 1.3;
  text-align: center;
  flex: 1;
}

#hiplusSidebar {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  top: 100px;
  display: flex;
  flex-direction: column;
}

.product-preview img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}
.cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap; 
}

.btn-catalog,
.btn-whatsapp {
  flex: 1; 
  text-align: center;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}
.btn-catalog {
  background-color: #e63946; 
  color: #fff;
}
.btn-whatsapp {
  background-color: #25d366; 
  color: #fff;
}

/* Mobile Layouts */
@media (max-width: 768px) {
  section {
    padding: 40px 0;
  }

  header .container {
    height: auto;
    flex-wrap: wrap;
    row-gap: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .logo {
    order: 1;
  }

  .menu-toggle {
    display: block;
    order: 2;
  }

  nav {
    order: 3;
  }

  .nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: #ffffff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 30px;
    display: none;

  }

  .nav-menu.active {
    display: flex;
  }

  .nav-btn {
    display: none;
  }

  .carousel-nav .nav-btn {
    display: flex;
  }

  .hero {
    min-height: 380px;
  }

  .hero-content {
    padding: 50px 0;
    max-width: 100%;
    text-align: center;
  }

  .hero-content .btn-green {
    margin-left: 0;
    margin-top: 12px;
    display: inline-block;
  }

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

  .grid-4,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .catalog-layout {
    flex-direction: column;
    gap: 20px;
  }

  .catalog-sidebar {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 8px;
    gap: 8px;
    position: sticky;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .cat-card {
    padding: 10px;
    flex-shrink: 0;
    width: 260px;
    height: auto;
    margin-bottom: 0;
  }

  .cat-card-img {
    width: 64px;
    height: 64px;
  }

  .cat-card-name {
    font-size: 16px;
  }

  .cat-card-extra {
    display: flex;
  }

  /* HI+ Sidebar  */
  #hiplusSidebar {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 8px;
    gap: 8px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    top: auto;
  }

  .hiplus-cat-icon-wrap {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }

  .hiplus-cat-card {
    padding: 10px;
    flex-shrink: 0;
    width: 240px;
    height: auto;
    margin-bottom: 0;
  }

  .hiplus-cat-label {
    font-size: 14px;
  }

  .grid-4-hiplus {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hiplus-img {
    height: 240px;
    padding: 16px;
  }

  .hiplus-details {
    padding: 20px;
  }

  .hiplus-name {
    font-size: 18px;
  }

  .hiplus-desc {
    font-size: 14px;
  }

  .hiplus-mfr {
    font-size: 13px;
  }

  .hiplus-btns .btn-small {
    padding: 14px;
    font-size: 13px;
  }

  /* Bigger main catalog cards */
  .product-img {
    height: 240px;
    padding: 16px;
  }

  .product-details {
    padding: 20px;
  }

  .product-name {
    font-size: 18px;
  }

  .product-model {
    font-size: 13px;
  }

  .product-bullets {
    font-size: 14px;
  }


  .sidebar-toggle {
    display: none;
  }

  .group-catalog-layout {
    flex-direction: column;
    gap: 20px;
  }

  .group-sidebar {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 8px;
    gap: 8px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .group-cat-card {
    flex-shrink: 0;
    width: 190px;
  }

  .nav-search-box {
    display: none;
}

.nav-search-box.mobile-active {
    display: block;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    max-width: 100%;
    padding: 14px 16px;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    z-index: 102;
    box-sizing: border-box;
}

/* Only push the nav menu down when the mobile search bar is open,
   instead of a duplicate unconditional .nav-menu rule that always won
   and made the 60px default unreachable */
.nav-search-box.mobile-active ~ .nav-menu {
    top: 116px;
    height: calc(100vh - 116px);
}

  .about-split {
    flex-direction: column;
    gap: 30px;
  }

  .owner-box {
    flex-direction: column;
  }

  .owner-info {
    padding: 25px;
  }

  .owner-info .btn-green {
    margin-left: 0;
    margin-top: 12px;
    /* gap when stacked vertically */
    display: inline-block;
  }

  .footer-columns {
    flex-direction: column;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-disclaimer {
    max-width: 100%;
    text-align: center;
  }

  .modal-footer {
    flex-direction: column;
    padding: 15px;
  }

  .collection-title {
    font-size: 15px;
  }

  .collection-header {
    padding: 14px 16px;
  }

  .collection-toggle {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

}

@keyframes imgFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.product-img img,
.hiplus-img img {
  animation: imgFadeIn 0.4s ease forwards;
}