.gallery-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 10px;
  padding: 10px 0;
  scroll-behavior: smooth;
}


.gallery-wrap img {
  max-width: 100%;
  height: auto;
  display: block;
  flex-shrink: 0; /* Prevent image from shrinking */
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #ffffff;
  color: #222;
}

/* Utility */
.text-center {
  text-align: center;
}

.lf-header h1,
.lf-header p,
.lf-footer h2,
.lf-footer p {
  color: #ffffff;
}
.lf-container {
  max-width: 1140px;
  padding: 0 20px;
  margin: auto;
}

/* Header */
.lf-header {
  background-color: #0c1c36;
  color: white;
  padding: 60px 20px;
}

.lf-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.lf-header p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: auto;
}

/* Section */
.lf-section {
  padding: 60px 0;
}

.lf-light-bg {
  background-color: #f9fafc;
}

/* Flex Content Blocks */
.lf-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.lf-reverse {
  flex-direction: row-reverse;
}

.lf-text {
  flex: 1 1 50%;
}

.lf-image {
  flex: 1 1 40%;
}

.lf-image img {
  width: 100%;
  border-radius: 8px;
}

/* Grid Cards */
.lf-grid-2,
.lf-grid-4 {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

.lf-grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.lf-grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.lf-card {
  background: #fff;
  padding: 25px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  text-align: left;
}

.lf-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #0c1c36;
}

.lf-card ul {
  padding-left: 20px;
}

.lf-card ul li {
  margin-bottom: 5px;
}

/* Lists */
.lf-list {
  list-style: disc;
  padding-left: 20px;
  margin-top: 15px;
}

/* Subtext */
.lf-subtext {
  color: #666;
  margin-top: 5px;
}

/* Footer */
.lf-footer {
  background-color: #0c1c36;
  color: white;
  padding: 60px 20px;
}

.lf-footer h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.lf-footer p {
  max-width: 600px;
  margin: 0 auto 20px auto;
  font-size: 1rem;
}

.lf-footer-buttons a {
  display: inline-block;
  margin: 10px;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.lf-btn {
  background-color: #fff;
  color: #0c1c36;
}

.lf-btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

/* ======= PRODUCT CATEGORY SECTION ======= */

.widget-product-categories {
  width: 100%;
  background-color: #f9fafc;
}

.container-xxxl {
  max-width: 100% !important;
  padding: 0 20px;
}

/* DESKTOP: 3 items side by side */
@media (min-width: 1025px) {
  .product-categories-body .slick-list,
  .product-categories-body .slick-track {
    display: flex !important;
    justify-content: space-between;
    width: 100% !important;
    transform: none !important;
  }

  .product-categories-body .product-category-item {
    width: 33.3333% !important;
    max-width: 33.3333%;
    flex: 0 0 33.3333%;
    display: block;
  }

  .product-categories-box.slick-slider .slick-arrow,
  .product-categories-box.slick-slider .slick-dots {
    display: none !important;
  }
}

/* MOBILE: Keep Slick slider active with 1 item per slide */
@media (max-width: 1024px) {
  .product-categories-body .product-category-item {
    width: 100% !important;
    max-width: 100%;
  }
}

/* GENERAL STYLING */
.product-categories-box {
  padding: 0;
  margin: 0 auto;
}

.category__text.text-truncate {
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}

.category__text {
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
}