/*
 * SquareFit — Responsive CSS
 * Covers: mobile (< 480px), small (< 600px), tablet (< 768px), mid (< 1024px), desktop (< 1280px)
 * Applied after styles.css — all overrides here are intentional.
 */

/* ============================================================
   GLOBAL RESET / UTILITIES
   ============================================================ */

/* iOS input zoom prevention — 16px minimum on all inputs */
input,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="search"],
input[type="url"],
input[type="date"],
input[type="datetime-local"],
select,
textarea {
  font-size: 16px !important;
}

/* Touch targets — minimum 44×44px for all interactive elements */
a,
button,
[role="button"],
.btn,
.tf-btn,
label[for],
.nav-icon > a,
.nav-icon > button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* Override for purely inline text links that shouldn't be 44px block */
p a,
.breadcrumbs a,
.footer a,
.card-product-info a,
.product-title a {
  min-height: unset;
  display: inline;
}

/*
 * Floating labels inside .custom-field use position:absolute and precise
 * top/transform to straddle the input border. The label[for] rule above
 * sets min-height:44px + display:inline-flex on them, which makes the label
 * box 44px tall. In the active (floated-up) state that means the lower 22px
 * of the white label background covers the input text — the "white overlap".
 * Reset those properties here so the label is only as tall as its text.
 */
.custom-field label {
  min-height: unset !important;
  display: block !important;
  align-items: unset !important;
}

/* ============================================================
   TOP BAR — fix fixed 550px width
   ============================================================ */
#topBarSwiper {
  width: 100% !important;
  max-width: 100%;
}

/* ============================================================
   CONTACT SECTION — fix 50px side margins on mobile
   ============================================================ */
@media (max-width: 767px) {
  .contact-section {
    margin: 16px !important;
    padding: 24px 12px !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .contact-section {
    margin: 24px !important;
  }
}

/* ============================================================
   SIZE CHIPS — 6-col grid overflows on small screens
   ============================================================ */
@media (max-width: 479px) {
  .size-chips {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 359px) {
  .size-chips {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

/* ============================================================
   HERO / SLIDER
   ============================================================ */
@media (max-width: 767px) {
  .tf-slideshow .slide-image-wrap,
  .tf-slideshow .wrap-slider {
    min-height: 260px;
    max-height: 380px;
  }

  .tf-slideshow .slide-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  /* Slide text content */
  .tf-slideshow .box-content {
    padding: 16px !important;
  }

  .tf-slideshow .heading {
    font-size: 22px !important;
    line-height: 1.3 !important;
  }

  .tf-slideshow .subheading {
    font-size: 13px !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .tf-slideshow .heading {
    font-size: 32px !important;
    line-height: 1.2 !important;
  }
}

/* ============================================================
   SECTION SPACING — scale down on mobile
   ============================================================ */
@media (max-width: 767px) {
  .flat-spacing-1,
  .flat-spacing-2,
  .flat-spacing-3,
  .flat-spacing-4,
  .flat-spacing-5 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  section,
  .section {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
@media (max-width: 767px) {
  .header-default {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  /* Prevent nav icon overflow */
  .nav-icon {
    gap: 4px !important;
  }

  /* Search bar on mobile */
  .tf-search-sticky {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }
}

/* ============================================================
   PRODUCT GRID — shop page
   ============================================================ */
@media (max-width: 479px) {
  /* Force 2-col on very small screens */
  .tf-grid-layout.lg-3 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .card-product .card-product-wrapper {
    border-radius: 8px;
    overflow: hidden;
  }

  .card-product-info .title {
    font-size: 13px !important;
  }

  .price-on-sale,
  .price-regular {
    font-size: 13px !important;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .tf-grid-layout.lg-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ============================================================
   PRODUCT DETAIL — GALLERY  (mobile)

   Root causes fixed here:
   1. height:600px on .tf-product-media-wrap → column flex → thumbs
      claim height:100%=600px → main image collapses to 0px height.
      Fix: remove fixed height; use aspect-ratio on main image.
   2. responsive CSS targeted .swiper-slide but JS injects .thumb-item.
      Fix: target .thumb-item directly.
   3. .swiper-wrapper { width:100% } from Swiper prevents horizontal
      scroll. Fix: width:auto on the thumb-strip swiper-wrapper.
   ============================================================ */
@media (max-width: 767px) {
  /* ── Outer wrap: drop fixed height, stack vertically ── */
  .tf-product-media-wrap {
    height: auto !important;
    overflow: visible !important;
    flex-direction: column !important;
    gap: 0 !important;
  }

  /* ── Slider row: become a column so main is on top, thumbs below ── */
  .thumbs-slider {
    flex-direction: column !important;
    height: auto !important;
    gap: 8px !important;
  }

  /* ── Main image: occupy full width with a fixed aspect ratio ── */
  .tf-product-media-main {
    width: 100% !important;
    height: auto !important;
    flex: none !important;
    aspect-ratio: 1 / 1;
    min-height: 0 !important;
    max-height: 400px;
    overflow: hidden;
    background: #f8f8f8;
    border-radius: 8px;
  }

  /* Swiper-wrapper inside main: fill the aspect-ratio container */
  .tf-product-media-main > .swiper-wrapper {
    height: 100% !important;
    width: 100% !important;
  }

  /* ── Thumbnail strip: fixed height, horizontal scroll ── */
  .tf-product-media-thumbs {
    order: 1;                        /* below main image */
    width: 100% !important;
    height: 80px !important;
    min-height: 80px !important;
    max-height: 80px !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    flex-wrap: nowrap !important;
    gap: 6px !important;
    padding: 0 0 4px !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;           /* hide scrollbar (Firefox) */
  }
  .tf-product-media-thumbs::-webkit-scrollbar { display: none; }

  /*
   * Target the JS-injected .thumb-item (not .swiper-slide).
   * Each thumb is a fixed 70×70px tile that never shrinks.
   */
  .tf-product-media-thumbs .thumb-item {
    width: 70px !important;
    min-width: 70px !important;
    height: 70px !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
  }

  /*
   * Allow the swiper-wrapper inside the thumb strip to grow past
   * the container width so overflow-x: auto scrolling works.
   * Swiper's own CSS locks it to width:100% — override that here.
   */
  .tf-product-media-thumbs > .swiper-wrapper {
    width: auto !important;
    min-width: 100%;
    height: 100% !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  /* ── Product info text ── */
  .tf-product-info-title {
    font-size: 20px !important;
  }

  .tf-product-info-price .price {
    font-size: 20px !important;
  }

  /* Add-to-cart row */
  .tf-product-info-buy-button {
    flex-direction: column;
    gap: 10px;
  }

  .tf-product-info-buy-button .tf-btn {
    width: 100%;
    justify-content: center;
  }

  /* Quantity input */
  .wg-quantity {
    width: 100%;
    justify-content: space-between;
  }
}

/* ============================================================
   CART / CHECKOUT
   ============================================================ */
@media (max-width: 767px) {
  /* Cart table → card layout */
  .tf-cart-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid #e8e8e8;
  }

  .tf-cart-item .cart-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
  }

  /* Cart table header — hide on mobile */
  .tf-cart-head {
    display: none !important;
  }

  /* Checkout form — single column */
  .tf-page-checkout .cols {
    flex-direction: column !important;
  }

  .tf-page-checkout .cols > div {
    width: 100% !important;
  }

  /* Order summary below form on mobile */
  .tf-page-checkout .right-content {
    margin-top: 24px;
  }

  /* Coupon input + button */
  .form-coupon {
    flex-direction: column;
    gap: 8px;
  }

  .form-coupon input,
  .form-coupon button {
    width: 100%;
  }
}

/* ============================================================
   MY ACCOUNT
   ============================================================ */
@media (max-width: 767px) {
  .my-account-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
  }

  .my-account-nav .nav-item {
    flex: 1 1 auto;
  }

  .my-account-nav .nav-link {
    text-align: center;
    padding: 10px 8px;
    font-size: 13px;
    white-space: nowrap;
  }

  /* Orders table — horizontal scroll */
  .my-account-orders .wg-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .my-account-orders table {
    min-width: 500px;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
@media (max-width: 767px) {
  .footer .footer-wrap {
    flex-direction: column;
    gap: 0;
  }

  .footer .footer-col-block {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 12px 0;
  }

  /* Newsletter */
  .footer-newsletter .tf-form-subscribe {
    flex-direction: column;
    gap: 8px;
  }

  .footer-newsletter .tf-form-subscribe input {
    width: 100%;
    border-radius: 8px !important;
  }

  .footer-newsletter .tf-form-subscribe .tf-btn {
    width: 100%;
    border-radius: 8px !important;
    justify-content: center;
  }
}

/* ============================================================
   ABOUT / STATIC PAGES
   ============================================================ */
@media (max-width: 767px) {
  .tf-about-content {
    flex-direction: column !important;
  }

  .tf-about-content > * {
    width: 100% !important;
  }

  /* FAQ accordion */
  .tf-faq .tf-collapse-content {
    padding: 12px !important;
  }
}

/* ============================================================
   MODALS & OFFCANVAS
   ============================================================ */
@media (max-width: 479px) {
  .modal-dialog {
    margin: 12px !important;
    max-width: calc(100vw - 24px) !important;
  }

  .modal-body {
    padding: 16px !important;
  }

  /* Quick view */
  .tf-quick-view .tf-product-media-wrap {
    flex-direction: column;
  }

  .tf-quick-view .tf-product-media-main {
    width: 100% !important;
  }
}

/* ============================================================
   SWIPER / CAROUSELS — prevent overflow
   ============================================================ */
@media (max-width: 767px) {
  .swiper {
    overflow: hidden !important;
  }

  /* Category swiper — smaller cards */
  .tf-sw-collection .swiper-slide {
    width: 160px !important;
  }

  /*
   * Product-detail thumbnail strip EXCEPTION.
   * The generic .swiper rule above sets overflow:hidden on every .swiper
   * element, which would block horizontal scrolling of the thumb strip.
   * This rule must come AFTER that block to re-enable scroll on the strip.
   */
  .tf-product-media-thumbs {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
  }
}

/* ============================================================
   TABLES (general) — horizontal scroll
   ============================================================ */
@media (max-width: 767px) {
  .wg-table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  table {
    min-width: 500px;
  }

  /* Wrap any bare table for scroll */
  .tf-table-page-cart table,
  .wg-table table {
    min-width: 540px;
  }
}

/* ============================================================
   COMPARE PAGE
   ============================================================ */
@media (max-width: 767px) {
  .tf-compare-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .tf-compare-table table {
    min-width: 600px;
  }
}

/* ============================================================
   BLOG / CONTENT PAGES
   ============================================================ */
@media (max-width: 767px) {
  .tf-blog-detail .content-wrap {
    flex-direction: column !important;
  }

  .tf-blog-detail aside {
    width: 100% !important;
    margin-top: 32px;
  }
}

/* ============================================================
   TYPOGRAPHY SCALING
   ============================================================ */
@media (max-width: 479px) {
  h1, .h1 { font-size: 24px !important; line-height: 1.3 !important; }
  h2, .h2 { font-size: 20px !important; line-height: 1.3 !important; }
  h3, .h3 { font-size: 18px !important; }
}

@media (min-width: 480px) and (max-width: 767px) {
  h1, .h1 { font-size: 28px !important; }
  h2, .h2 { font-size: 22px !important; }
}

/* ============================================================
   UTILITY — image containment
   ============================================================ */
img {
  max-width: 100%;
  height: auto;
}

/* ============================================================
   PRELOAD SPINNER CENTERING (all sizes)
   ============================================================ */
.preload-container {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* ============================================================
   PRINT — strip decorative elements
   ============================================================ */
@media print {
  .tf-top-bar,
  header#header,
  #footer,
  .offcanvas,
  .modal,
  .tf-slideshow,
  .preload {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
}

/* ============================================================
   UI CONSISTENCY FIXES
   ============================================================ */

/* Category / collection swiper images */
.collection-item-v2 .collection-image img,
.shop-cat-image img,
.collection-item-v3 .collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .collection-item-v2 .collection-image {
    height: 260px !important;
  }
}

@media (max-width: 480px) {
  .collection-item-v2 .collection-image {
    height: 200px !important;
  }
}

/* Product card images — consistent cover */
.card-product .img-product,
.card-product .img-hover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Section highlight product cards */
#product-swiper .swiper-slide .card-product .card-product-wrapper {
  overflow: hidden;
}

#product-swiper .swiper-slide .card-product .card-product-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ----------------------------------------------------------
   STICKY HEADER — compact height 51px
   ---------------------------------------------------------- */

.sticky-header.header-bottom.is-compact {
  height: 51px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
}

.sticky-header.header-bottom.is-compact .container-full,
.sticky-header.header-bottom.is-compact .wrapper-header {
  height: 100%;
  display: flex !important;
  align-items: center !important;
}

/* ----------------------------------------------------------
   2. NAV-SW — enforce perfect circle & icon centering
   ---------------------------------------------------------- */

.nav-sw {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px;
  flex-shrink: 0;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  line-height: 1 !important;
}

.nav-sw .icon,
.nav-sw span[class*="icon"] {
  font-size: 13px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.box-sw-navigation {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* ----------------------------------------------------------
   3. WHY CHOOSE US — fix title line-height / wrap
   ---------------------------------------------------------- */

.flat-title .title,
.choos-tit {
  line-height: 1.35 !important;
  overflow: visible !important;
  white-space: normal !important;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Icon boxes: equal height slides, centred content */
.why-swiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
}

.why-swiper .swiper-slide .tf-icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 16px;
}

/* ----------------------------------------------------------
   4. ICON-BAG — vertical centering in header nav
   ---------------------------------------------------------- */

.nav-icon-item,
#header .nav-icon .nav-icon-item {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  vertical-align: middle;
}

.nav-icon-item .icon,
#header .nav-icon .nav-icon-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  vertical-align: middle;
}

/* Mobile toolbar icon centering */
.tf-toolbar-bottom .toolbar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin: 0 auto;
}

.tf-toolbar-bottom .toolbar-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ----------------------------------------------------------
   5. SOCIAL MEDIA ICONS — consistent size and alignment
   ---------------------------------------------------------- */

.tf-social-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.tf-social-icon .box-icon {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px;
  flex-shrink: 0;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
}

.tf-social-icon .box-icon i {
  font-size: 15px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ----------------------------------------------------------
   6. BROKEN / MISSING IMAGES — hide gracefully
   ---------------------------------------------------------- */

img[src=""],
img[src="null"],
img:not([src]) {
  visibility: hidden;
}

/* ============================================================
   PRODUCT NOT FOUND STATE  (.sq-pnf-*)
   Rendered by product_detail.js when the API returns 404/400.
   Sits inside #main-product-list — header + footer still visible.
   Uses !important where styles.css would otherwise win.
   ============================================================ */

/* Override the section's own padding so we control the whole canvas */
#main-product-list.sq-pnf-active {
  padding: 0 !important;
  background: #f4f6fb !important;
}

/* Full-bleed canvas — covers the entire section */
.sq-pnf-wrap {
  width: 100%;
  min-height: 72vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 72px 24px;
  box-sizing: border-box;
  background: #f4f6fb;
}

/* White card — centered, max-width constrained */
.sq-pnf-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 8px 48px rgba(48, 58, 153, 0.10), 0 2px 12px rgba(0,0,0,0.06);
  padding: 56px 48px 48px;
  max-width: 560px;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decorative top accent bar */
.sq-pnf-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF7433 0%, #303a99 100%);
}

/* SVG illustration container */
.sq-pnf-illo {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: linear-gradient(135deg, #fff4ee 0%, #eef0ff 100%);
  border-radius: 50%;
  border: 2px solid #ffe0cc;
}

.sq-pnf-illo svg {
  width: 52px;
  height: 52px;
  display: block;
}

/* Eyebrow badge */
.sq-pnf-badge {
  display: inline-block !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #FF7433 !important;
  background: #fff4ee !important;
  border: 1px solid #ffd5bc !important;
  border-radius: 20px !important;
  padding: 4px 16px !important;
  margin-bottom: 14px !important;
  line-height: 1.6 !important;
}

/* Heading */
.sq-pnf-title {
  font-size: 30px !important;
  font-weight: 800 !important;
  color: #1a1a2e !important;
  margin: 0 0 14px !important;
  line-height: 1.2 !important;
}

/* Body text */
.sq-pnf-text {
  font-size: 15px !important;
  color: #64748b !important;
  line-height: 1.65 !important;
  margin: 0 0 36px !important;
  max-width: 400px;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* CTA row */
.sq-pnf-actions {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  gap: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 28px !important;
}

.sq-pnf-actions .tf-btn {
  min-width: 160px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px !important;
}

/* Divider */
.sq-pnf-divider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  margin: 0 0 20px;
  color: #94a3b8;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.sq-pnf-divider::before,
.sq-pnf-divider::after {
  content: '';
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background: #e8ecf4;
}

/* Help text */
.sq-pnf-help {
  font-size: 13.5px !important;
  color: #94a3b8 !important;
  line-height: 1.5;
}
.sq-pnf-help a {
  color: #FF7433 !important;
  font-weight: 600;
  text-decoration: none;
}
.sq-pnf-help a:hover { text-decoration: underline; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 600px) {
  .sq-pnf-card          { padding: 44px 24px 36px; border-radius: 20px; }
  .sq-pnf-title         { font-size: 24px !important; }
  .sq-pnf-illo          { width: 84px; height: 84px; }
  .sq-pnf-illo svg      { width: 42px; height: 42px; }
}
@media (max-width: 400px) {
  .sq-pnf-actions       { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center; }
  .sq-pnf-actions .tf-btn { width: 100%; max-width: 260px; }
}


/* ============================================================
   SHOP PAGE — PRODUCT CONTROLS TOOLBAR  (mobile)
   Root cause was position:absolute on .tf-control-sorting inside
   @media (max-width:767px) in styles.css — now removed at source.
   The existing <=768px block in styles.css already provides correct
   stacked layout (category info row → sort row). These rules only
   add minor polish on top.
   ============================================================ */
@media (max-width: 768px) {
  /* Sort dropdown: full-width row below category title, right-aligned */
  .tf-control-sorting {
    display: flex !important;
    justify-content: flex-end;
    width: 100% !important;
    margin-left: 0 !important;
  }

  /* Category title font slightly smaller on mobile for readability */
  div#category-buttons-container .type-label {
    font-size: 17px !important;
    line-height: 1.4;
  }
}
