@charset "utf-8";
/*
Theme Name: 182 Casa Lontoc Theme 2026
Theme URI: https://casalontoc.com/
Author: 182 Casa Lontoc
Description: Dummy luxury editorial theme for Casa Lontoc
Version: 1.0
Text Domain: casalontoc2026
*/

:root {
  --bg: #f6f1eb;
  --bg-soft: #fbf8f4;
  --panel: #f2ebe3;
  --text: #2b1a12;
  --text-soft: #5e4a3c;
  --accent: #7a4a24;
  --accent-dark: #5f3718;
  --line: #ddd1c4;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(43, 26, 18, 0.08);
  --radius: 0px;
  --max-width: 1240px;
  --transition: all 0.25s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--text);
  line-height: 1.05;
  margin: 0 0 18px;
  font-weight: 600;
}

h1 {
  font-size: clamp(42px, 6vw, 78px);
}

h2 {
  font-size: clamp(32px, 4vw, 56px);
}

h3 {
  font-size: clamp(24px, 3vw, 34px);
}

p {
  margin: 0 0 18px;
  color: var(--text-soft);
}

ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text-soft);
}
.info-icon {
  margin-bottom: 12px;
}

.info-icon img {
  height: 40px;   /* adjust if needed */
  width: auto;
  margin: 0 auto;
  display: block;
  opacity: 0.85;
}
.container {
  width: min(100% - 48px, var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

.section-tight {
  padding: 56px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 38px;
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid var(--accent);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
}

.btn-outline:hover {
  background: var(--panel);
  color: var(--text);
  transform: translateY(-1px);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.contact-form-content input,
.contact-form-content textarea,
.contact-form-content select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--text);
  padding: 15px 16px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  margin-bottom: 14px;
}

.contact-form-content input:focus,
.contact-form-content textarea:focus,
.contact-form-content select:focus {
  border-color: var(--accent);
}

.contact-form-content textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form-content input[type="submit"],
.contact-form-content button,
.contact-form-content .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.contact-form-content input[type="submit"]:hover,
.contact-form-content button:hover,
.contact-form-content .wpcf7-submit:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}
/* =========================================
   PRODUCT DETAIL PAGE
========================================= */
.product-detail-page {
  padding-top: 36px;
}

.breadcrumb-wrap {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 24px;
}

.breadcrumb-wrap a {
  color: var(--text-soft);
  text-decoration: none;
}

.breadcrumb-wrap span {
  margin: 0 6px;
}

.details-heading {
  margin-top: 56px;
  text-align: center;
}

.details-heading h2 {
  margin-bottom: 0;
}
.product-top-grid.no-image {
    display: block;
}

.product-top-grid.no-image .product-top-content {
    width: 100%;
    max-width: 100%;
}

.detail-row.no-image {
    display: block;
}

.detail-row.no-image .detail-content {
    width: 100%;
    max-width: 100%;
}

.detail-row.no-image .detail-image {
    display: none;
}
/* MAIN TOP SECTION */
.product-top-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.4fr);
  gap: 48px;
  align-items: center;
  padding: 30px 0 0;
}

.product-top-image {
  width: 100%;
}

.product-top-image img {
  width: 100%;
  display: block;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  object-fit: cover;
}

.product-top-content {
  min-width: 0;
}

.product-top-content h1 {
  margin-bottom: 16px;
}

/* CHILD ROWS */
.product-details-list {
  padding-top: 10px;
}

.detail-row {
  display: grid;
  gap: 48px;
  align-items: center;
  padding: 52px 0;
  border-top: 1px solid var(--line);
  grid-auto-flow: dense;
}

.detail-row:last-child {
  border-bottom: 1px solid var(--line);
}

.detail-content {
  min-width: 0;
}

.detail-content h2 {
  margin-bottom: 16px;
}

.detail-image {
  width: 100%;
}

.detail-image img {
  width: 100%;
  display: block;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  object-fit: cover;
}

/* odd rows: content left, image right */
.detail-row.row-content-left {
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  grid-template-areas: "content image";
}

.detail-row.row-content-left .detail-content {
  grid-area: content;
}

.detail-row.row-content-left .detail-image {
  grid-area: image;
}

/* even rows: image left, content right */
.detail-row.row-image-left {
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.4fr);
  grid-template-areas: "image content";
}

.detail-row.row-image-left .detail-image {
  grid-area: image;
}

.detail-row.row-image-left .detail-content {
  grid-area: content;
}

/* CONTENT BODY */
.content-body p {
  font-size: 17px;
  line-height: 1.75;
}

.content-body h3,
.content-body h4 {
  margin-top: 24px;
  margin-bottom: 10px;
}

.content-body ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

.content-body li {
  margin-bottom: 8px;
}

.content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: var(--bg-soft);
}

.content-body table th,
.content-body table td {
  border: 1px solid var(--line);
  padding: 12px 10px;
  text-align: center;
  font-size: 15px;
}

.content-body table th {
  font-weight: 600;
  color: var(--text);
  background: #f3ece4;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .product-top-grid,
  .detail-row,
  .detail-row.row-content-left,
  .detail-row.row-image-left {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "image"
      "content";
    gap: 28px;
  }

  .product-top-image,
  .detail-image {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
  }

  .product-top-content {
    min-width: 0;
  }

  .detail-row {
    padding: 40px 0;
  }
}

/*events*/
.events-hero {
    width: 100%;
    height: 50vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.events-page {
    padding: 60px 0;
}

.events-page-header {
    margin-bottom: 40px;
    text-align: center;
}

.events-page-title {
    font-size: 42px;
    line-height: 1.2;
    margin: 0;
}

.events-page-content {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.event-card {
    display: flex;
    align-items: stretch;
    gap: 30px;
    background: #fff;
}

.event-card-image {
    width: 40%;
    flex-shrink: 0;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event-card-content {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}

.event-card-title {
    font-size: 28px;
    margin: 0 0 15px;
}

.event-card-title a {
    text-decoration: none;
    color: inherit;
}

.event-card-excerpt {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.event-card-button {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border: 1px solid #000;
    color: #000;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    align-self: flex-start;
}

.event-card-button:hover {
    background: #000;
    color: #fff;
}

@media (max-width: 991px) {
    .events-page-title {
        font-size: 34px;
    }

    .event-card {
        flex-direction: column;
    }

    .event-card-image,
    .event-card-content {
        width: 100%;
    }

    .event-card-image img {
        height: 300px;
    }

    .event-card-content {
        padding: 0;
    }
}

@media (max-width: 767px) {
    .events-hero {
        height: 40vh;
    }

    .events-page {
        padding: 40px 0;
    }

    .events-page-title {
        font-size: 28px;
    }

    .event-card-title {
        font-size: 24px;
    }
}
/* EVENTS SECTION HEADER */
.events-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.events-section-header h2 {
  margin: 0;
}

.events-view-all {
  font-size: 14px;
  color: var(--text-soft);
}

/* reuse product grid */
.events-section .products-grid {
  margin-top: 10px;
}
.events-page {
  padding: 30px 0 20px;
}

.events-page-header {
  margin-bottom: 20px;
  text-align: center;
}

.events-page-content {
  max-width: 900px;
  margin: 0 auto 20px;
  text-align: center;
}

.events-section {
  padding-top: 20px;
  padding-bottom: 36px;
}
.section {
  padding: 84px 0;
}
/*recepie*/
.recipes-header {
  text-align: center;
  margin-bottom: 24px;
}

.recipes-header .content-body {
  max-width: 700px;
  margin: 0 auto;
}

.recipes-search {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.recipes-search input {
  width: 420px;
  max-width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  font-size: 15px;
}

/* smooth hide/show */
.recipe-card {
  transition: all 0.2s ease;
}
/*recepie -inner */
.recipe-banner {
  width: 100%;
  height: 50vh;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.recipe-page {
  padding-top: 36px;
}

.recipe-top-grid {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 48px;
  align-items: center;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.recipe-top-content h1 {
  margin-bottom: 18px;
}

.recipe-top-image img {
  width: 100%;
  display: block;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}

.recipe-tabs-header {
  display: flex;
  gap: 16px;
  margin: 32px 0 24px;
  flex-wrap: wrap;
}

.recipe-tab-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  color: var(--text);
}

.recipe-section-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 36px;
  align-items: start;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.recipe-section-main h2,
.recipe-instructions-block h2,
.recipe-extra-block h2 {
  margin-bottom: 16px;
}

.recipe-product-card {
  border: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 18px;
  text-align: center;
}

.recipe-product-card img {
  width: 100%;
  display: block;
  margin-bottom: 16px;
}

.recipe-product-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.recipe-instructions-block,
.recipe-extra-block {
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}

.recipe-instructions-block:last-child,
.recipe-extra-block:last-child {
  border-bottom: 0;
}

@media (max-width: 980px) {
  .recipe-top-grid,
  .recipe-section-grid {
    grid-template-columns: 1fr;
  }

  .recipe-top-image,
  .recipe-section-side {
    max-width: 520px;
  }

  .recipe-top-image img,
  .recipe-section-side img {
    margin: 0 auto;
  }
}
/* =========================================================
   DISTILLED WHITE VINEGAR PAGE
   ========================================================= */

.cl-distilled-page,
.cl-distilled-page * {
    box-sizing: border-box;
}

.cl-distilled-page {
    background: #f6f0e6;
    color: #3f2f23;
    padding: 0;
    width: 100%;
}

.cl-distilled-page .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.cl-section-card {
    background: #fbf7f1;
    border: 1px solid #d9cdbd;
    border-radius: 18px;
    padding: 35px;
    width: 100%;
}

.cl-section-title {
    text-align: center;
    font-size: 40px;
    line-height: 1.15;
    margin: 0 0 30px;
    color: #4a3628;
}

.cl-distilled-hero {
    padding: 60px 0 40px;
    width: 100%;
}

.cl-distilled-hero__wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.cl-distilled-hero__content {
    width: 58%;
    flex: 0 0 58%;
}

.cl-distilled-hero__image {
    width: 38%;
    flex: 0 0 38%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.cl-distilled-hero__image img {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
    object-fit: contain;
}

.cl-distilled-hero__content h1 {
    font-size: 64px;
    line-height: 1;
    margin: 0 0 15px;
    color: #4a3628;
}

.cl-distilled-hero__subtitle {
    font-size: 28px;
    line-height: 1.2;
    margin: 0 0 20px;
    color: #4b6b2e;
    font-weight: 700;
}

.cl-distilled-hero__text {
    margin-bottom: 25px;
}

.cl-distilled-hero__text p {
    font-size: 18px;
    line-height: 1.7;
    margin: 0 0 16px;
}

.cl-distilled-hero-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
    max-width: 100%;
}

.cl-distilled-hero-icons__item {
    width: calc(33.333% - 11px);
    min-width: 160px;
    background: #fbf7f1;
    border: 1px solid #d9cdbd;
    border-radius: 16px;
    padding: 18px 14px;
    text-align: center;
}

.cl-distilled-hero-icons__item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
    margin: 0 auto 10px;
}

.cl-distilled-hero-icons__item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
    color: #4a3628;
}

@media (max-width: 991px) {
    .cl-distilled-hero__wrap {
        flex-wrap: wrap;
    }

    .cl-distilled-hero__content,
    .cl-distilled-hero__image {
        width: 100%;
        flex: 0 0 100%;
    }

    .cl-distilled-hero__image {
        order: 2;
    }

    .cl-distilled-hero__content {
        order: 1;
    }

    .cl-distilled-hero-icons__item {
        width: calc(50% - 8px);
    }
}

@media (max-width: 767px) {
    .cl-distilled-hero__content h1 {
        font-size: 40px;
    }

    .cl-distilled-hero__subtitle {
        font-size: 22px;
    }

    .cl-distilled-hero-icons__item {
        width: 100%;
    }
}

/* =========================================================
   USES
   ========================================================= */

.cl-distilled-uses {
    padding: 10px 0 30px;
}

.cl-distilled-uses__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.cl-distilled-uses__item {
    flex: 1 1 calc(16.666% - 17px);
    min-width: 140px;
    text-align: center;
    padding: 15px 10px;
}

.cl-distilled-uses__item img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
    margin: 0 auto 12px;
}

.cl-distilled-uses__item h3 {
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
    color: #4a3628;
    font-weight: 600;
}

/* =========================================================
   LAUNDRY TIP
   ========================================================= */

.cl-distilled-laundry-tip {
    padding: 0 0 30px;
}

.cl-distilled-laundry-tip__wrap {
    background: #eef3e7;
    border: 1px solid #c8d5b5;
    border-radius: 18px;
    padding: 28px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.cl-distilled-laundry-tip__content {
    flex: 1 1 55%;
    min-width: 280px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cl-distilled-laundry-tip__image {
    flex: 1 1 35%;
    min-width: 240px;
    text-align: center;
}

.cl-distilled-laundry-tip__icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    display: block;
}

.cl-distilled-laundry-tip__text h2 {
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 1.2;
    color: #4b6b2e;
}

.cl-distilled-laundry-tip__text p {
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
    color: #3f2f23;
}

.cl-distilled-laundry-tip__image img {
    display: block;
    width: 100%;
    max-width: 340px;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    border-radius: 16px;
}

/* =========================================================
   PACKAGING
   ========================================================= */

.cl-distilled-packaging {
    padding: 0 0 30px;
}

.cl-distilled-packaging__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 28px;
    width: 100%;
    align-items: start;
}

.cl-distilled-packaging__col {
    width: 100%;
    min-width: 0;
}

.cl-distilled-packaging__header {
    text-align: center;
    margin-bottom: 20px;
}

.cl-distilled-packaging__header span {
    display: inline-block;
    background: #4b6b2e;
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.cl-distilled-packaging__header p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

.cl-distilled-packaging__content {
    width: 100%;
}

.cl-distilled-packaging__items-row {
    display: grid;
    gap: 18px;
    width: 100%;
    align-items: start;
}

/* first section: Small Packaging = 4 across */
.cl-distilled-packaging__col:first-child .cl-distilled-packaging__items-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* second section: Bulk Packaging = 2 across */
.cl-distilled-packaging__col:last-child .cl-distilled-packaging__items-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cl-distilled-packaging__item {
    background: #fbf7f1;
    border: 1px solid #d9cdbd;
    border-radius: 14px;
    padding: 16px 12px;
    text-align: center;
    width: 100%;
    min-width: 0;
}

.cl-distilled-packaging__item-image {
    margin-bottom: 14px;
}

.cl-distilled-packaging__item-image img {
    width: 100%;
    max-width: 120px;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.cl-distilled-packaging__item-content {
    width: 100%;
}

.cl-distilled-packaging__item-content h2,
.cl-distilled-packaging__item-content h3 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.3;
    color: #3f2f23;
    text-align: center;
}

.cl-distilled-packaging__item-content p {
    font-size: 15px;
    line-height: 1.5;
    margin: 0 0 12px;
    text-align: center;
}

.cl-distilled-packaging__item-content table {
    width: 100% !important;
    border-collapse: collapse;
    margin: 0 auto 12px;
    background: #fff;
    font-size: 13px;
}

.cl-distilled-packaging__item-content th,
.cl-distilled-packaging__item-content td {
    padding: 6px 8px;
    vertical-align: top;
}

@media (max-width: 1199px) {
    .cl-distilled-packaging__grid {
        grid-template-columns: 1fr;
    }

    .cl-distilled-packaging__col:first-child .cl-distilled-packaging__items-row,
    .cl-distilled-packaging__col:last-child .cl-distilled-packaging__items-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .cl-distilled-packaging__col:first-child .cl-distilled-packaging__items-row,
    .cl-distilled-packaging__col:last-child .cl-distilled-packaging__items-row {
        grid-template-columns: 1fr;
    }
}
.cl-distilled-packaging__item-content table {
    width: 100% !important;
    border-collapse: collapse;
    margin: 0 auto 12px;
    background: #fff;
    font-size: 11px;
    line-height: 1.3;
}

.cl-distilled-packaging__item-content th,
.cl-distilled-packaging__item-content td {
    padding: 4px 6px;
    vertical-align: top;
}

.cl-distilled-packaging__item-content th {
    font-size: 11px;
    font-weight: 600;
}

.cl-distilled-packaging__item-content td {
    font-size: 10px;
}
/* product cards */
.cl-distilled-packaging__item {
    background: #fbf7f1;
    border: 1px solid #d9cdbd;
    border-radius: 14px;
    padding: 14px 10px;
    text-align: center;
    width: 100%;
    min-width: 0;
    min-height: 540px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* image area */
.cl-distilled-packaging__item-image {
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px; /* closer to title/table */
}

.cl-distilled-packaging__item-image img {
    width: 110px;      /* same visual size */
    height: 150px;     /* same visual size */
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* make title area 2 lines and aligned */
.cl-distilled-packaging__item-content h2,
.cl-distilled-packaging__item-content h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.2;
    color: #3f2f23;
    text-align: center;
    min-height: 44px;          /* forces 2-line area */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* remove extra space before table */
.cl-distilled-packaging__item-content p {
    font-size: 14px;
    line-height: 1.4;
    margin: 0 0 8px;
    text-align: center;
    min-height: 36px;
}

.cl-distilled-packaging__item-content table {
    width: 100% !important;
    border-collapse: collapse;
    margin: 0 auto 0;   /* closer to picture/title */
    background: #fff;
    font-size: 11px;
    line-height: 1.25;
}

.cl-distilled-packaging__item-content th,
.cl-distilled-packaging__item-content td {
    padding: 4px 6px;
    vertical-align: top;
}
.cl-distilled-packaging__header p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    min-height: 3.2em; /* forces about 2 lines */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
/* =========================================================
   BOTTOM FEATURES
   ========================================================= */

.cl-distilled-bottom-icons {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
}

.cl-distilled-bottom-icons__item {
    text-align: center;
    padding: 18px 14px;
    background: #fbf7f1;
    border: 1px solid #d9cdbd;
    border-radius: 14px;
}

.cl-distilled-bottom-icons__item img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block;
    margin: 0 auto 12px;
}

.cl-distilled-bottom-icons__item h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.3;
    color: #3f2f23;
}

.cl-distilled-bottom-icons__item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #5a4a3c;
}

@media (max-width: 991px) {
    .cl-distilled-bottom-icons {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .cl-distilled-bottom-icons {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   CTA
   ========================================================= */

.cl-distilled-cta {
    padding: 0 0 60px;
}

.cl-distilled-cta__wrap {
    background: #355221;
    color: #fff;
    border-radius: 18px;
    padding: 35px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.cl-distilled-cta__left,
.cl-distilled-cta__center,
.cl-distilled-cta__right {
    flex: 1 1 280px;
}

.cl-distilled-cta__left h2,
.cl-distilled-cta__center h3 {
    margin: 0 0 12px;
    color: #fff;
}

.cl-distilled-cta__left h2 {
    font-size: 34px;
    line-height: 1.2;
}

.cl-distilled-cta__left p,
.cl-distilled-cta__center p,
.cl-distilled-cta__right p {
    margin: 0 0 10px;
    line-height: 1.7;
    font-size: 16px;
}

.cl-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #fff;
    color: #355221;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.cl-btn:hover {
    background: #f0eadf;
    color: #355221;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {
    .cl-distilled-hero__content h1 {
        font-size: 48px;
    }

    .cl-distilled-hero__subtitle {
        font-size: 24px;
    }

    .cl-distilled-hero-icons__item {
        flex: 1 1 calc(50% - 9px);
    }

    .cl-distilled-uses__item {
        flex: 1 1 calc(33.333% - 14px);
    }

    .cl-section-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .cl-section-card {
        padding: 22px;
    }

    .cl-distilled-hero {
        padding: 40px 0 25px;
    }

    .cl-distilled-hero__content h1 {
        font-size: 38px;
    }

    .cl-distilled-hero__subtitle {
        font-size: 20px;
    }

    .cl-distilled-hero__text p,
    .cl-distilled-laundry-tip__text p {
        font-size: 16px;
    }

    .cl-distilled-hero-icons__item,
    .cl-distilled-uses__item,
    .cl-distilled-packaging__col {
        flex: 1 1 100%;
    }

    .cl-distilled-laundry-tip__content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cl-distilled-laundry-tip__text h2 {
        font-size: 24px;
    }

    .cl-distilled-cta__left h2 {
        font-size: 28px;
    }
}
/*contact*/
.global-contact-cta {
  padding: 50px 0 20px;
}

.global-contact-box {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, #7a4a24 0%, #5f3718 100%);
  padding: 42px 46px;
  border-radius: 8px;
  color: #fff;
}

.global-contact-left h2 {
  color: #fff;
  margin-bottom: 14px;
}

.global-contact-left p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 360px;
  margin: 0;
}

.global-contact-right {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 34px;
}

.global-contact-form p,
.global-contact-form label,
.global-contact-form span,
.global-contact-form h3 {
  color: #fff;
}

.global-contact-form input,
.global-contact-form textarea,
.global-contact-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  margin-bottom: 14px;
  border-radius: 4px;
}

.global-contact-form input::placeholder,
.global-contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.global-contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.global-contact-form input:focus,
.global-contact-form textarea:focus,
.global-contact-form select:focus {
  border-color: rgba(255, 255, 255, 0.5);
}

.global-contact-form input[type="submit"],
.global-contact-form button,
.global-contact-form .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: #c89a63;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: 4px;
}

.global-contact-form input[type="submit"]:hover,
.global-contact-form button:hover,
.global-contact-form .wpcf7-submit:hover {
  background: #b78955;
  border-color: #b78955;
}

@media (max-width: 900px) {
  .global-contact-box {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 30px 24px;
  }

  .global-contact-right {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding-left: 0;
    padding-top: 24px;
  }
}
.social-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.social-item img {
    width: 80px;
    height: 80;
    object-fit: contain;
}

.social-item span {
    font-size: 15px;
    line-height: 1.4;
}
/* LEFT SIDE TEXT */
.inquire-left h3,
.inquire-left .contact-info,
.inquire-left .contact-info p,
.inquire-left .contact-info strong,
.inquire-left .social-item span {
    color: #ffffff;
}

/* CONTACT FORM 7 LABELS (right side) */
.global-contact-right label {
    color: #ffffff !important;
}

/* INPUT TEXT (optional, for consistency) */
.global-contact-right input,
.global-contact-right textarea {
    color: #000; /* keep input text readable */
}

/* OPTIONAL: make placeholders lighter */
.global-contact-right input::placeholder,
.global-contact-right textarea::placeholder {
    color: #999;
}
/*inner page */
.inner-page-banner {
  width: 100%;
  height: 50vh;
  min-height: 280px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.inner-page-content-wrap {
  padding-top: 40px;
}

.inner-page-header {
  margin-bottom: 24px;
  text-align: center;
}

.inner-page-header h1 {
  margin-bottom: 0;
}

.inner-page-content {
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .inner-page-banner {
    height: 35vh;
    min-height: 220px;
  }
}
/*parter*/
.cl-partner-form {
    background: #f6f1eb;
    padding: 40px;
    border-radius: 6px;
    border: 1px solid #e5ddd5;
}

.cl-partner-form label {
    font-size: 14px;
    color: #5a4636;
    display: block;
    margin-bottom: 6px;
}

.cl-partner-form input,
.cl-partner-form select,
.cl-partner-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d8cfc6;
    border-radius: 4px;
    background: #fff;
    font-size: 14px;
    color: #333;
}

.cl-partner-form textarea {
    min-height: 120px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group.full {
    flex: 100%;
}

.cl-partner-form .wpcf7-list-item {
    display: inline-block;
    margin-right: 15px;
}

.cl-partner-form .wpcf7-list-item label {
    display: inline;
    font-weight: normal;
}

.form-submit {
    text-align: center;
    margin-top: 20px;
}

.cl-partner-form input[type="submit"] {
    background: #5a3825;
    color: #fff;
    padding: 14px 30px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.cl-partner-form input[type="submit"]:hover {
    background: #3e2719;
}
.cl-faq-section {
    padding: 70px 20px;
    background: #f8f4ef;
}

.cl-faq-container {
    max-width: 1100px;
    margin: 0 auto;
}

.cl-faq-heading-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 35px;
}

.cl-faq-line {
    flex: 1;
    height: 1px;
    background: #d8ccc0;
}

.cl-faq-heading {
    margin: 0;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 500;
    color: #4b2f21;
    text-align: center;
    white-space: nowrap;
}

.cl-faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cl-faq-item {
    background: #fffdf9;
    border: 1px solid #e1d6ca;
    border-radius: 4px;
    overflow: hidden;
}

.cl-faq-item summary {
    list-style: none;
    cursor: pointer;
    position: relative;
    padding: 22px 60px 22px 24px;
    font-size: 31px;
    line-height: 1.4;
    color: #4b2f21;
}

.cl-faq-item summary::-webkit-details-marker {
    display: none;
}

.cl-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 34px;
    line-height: 1;
    color: #7a5a44;
    transition: transform 0.2s ease, color 0.2s ease;
}

.cl-faq-item[open] summary::after {
    content: "−";
}

.cl-faq-answer {
    padding: 0 24px 22px 24px;
    border-top: 1px solid #eee3d7;
}

.cl-faq-answer p {
    margin: 16px 0 0;
    font-size: 26px;
    line-height: 1.75;
    color: #6a5648;
}

/* Hover */
.cl-faq-item summary:hover {
    background: #fcf8f3;
}

/* Mobile */
@media (max-width: 768px) {
    .cl-faq-section {
        padding: 50px 16px;
    }

    .cl-faq-heading-wrap {
        gap: 14px;
        margin-bottom: 24px;
    }

    .cl-faq-heading {
        font-size: 30px;
        white-space: normal;
    }

    .cl-faq-item summary {
        font-size: 20px;
        padding: 18px 50px 18px 18px;
    }

    .cl-faq-item summary::after {
        right: 18px;
        font-size: 26px;
    }

    .cl-faq-answer {
        padding: 0 18px 18px 18px;
    }

    .cl-faq-answer p {
        font-size: 17px;
        line-height: 1.7;
    }
}
/*about*/
.about-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 560px;
  position: relative;
  display: flex;
  align-items: center;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(245, 239, 231, 0.55);
}

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

.about-hero-content {
  max-width: 560px;
  padding: 30px 0;
}

.about-hero-content h1 {
  margin-bottom: 18px;
}

.about-sections {
  padding-top: 42px;
}

.about-row {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.about-row:first-child {
  border-top: 1px solid var(--line);
}

.about-row-content h2 {
  margin-bottom: 16px;
}

.about-row-image img {
  width: 100%;
  display: block;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}

@media (max-width: 980px) {
  .about-row {
    grid-template-columns: 1fr;
  }

  .about-row-image {
    max-width: 520px;
  }

  .about-row-image img {
    margin: 0 auto;
  }
}
/* Header */
.site-header {
  background: rgba(246, 241, 235, 0.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 30px;
}

.site-branding a {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text);
}

.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-navigation a {
  font-size: 15px;
  color: var(--text);
  position: relative;
}

.main-navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item > a::after,
.main-navigation .current_page_item > a::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  font-size: 28px;
  color: var(--text);
  cursor: pointer;
}
/* LOGO FIX */
.brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  height: 100px;  /* ðŸ”¥ FIXED SIZE */
  width: auto;
}

.brand-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* Hero */
.home-hero {
  padding: 54px 0 34px;
}

.hero-shell {
  background: linear-gradient(90deg, rgba(246, 241, 235, 0.98) 0%, rgba(246, 241, 235, 0.92) 42%, rgba(246, 241, 235, 0.38) 70%, rgba(246, 241, 235, 0.12) 100%);
  border: 1px solid var(--line);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  min-height: 610px;
}

.hero-content {
  padding: 72px 64px;
}

.hero-content p {
  max-width: 520px;
  font-size: 19px;
}

.hero-media {
  min-height: 610px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Homepage sections */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.product-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-card-image {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}

.product-card-body {
  padding: 22px;
  text-align: center;
}

.product-card-body h3 {
  margin-bottom: 10px;
  font-size: 36px;
}

.product-card-body p {
  font-size: 15px;
  margin-bottom: 20px;
}

.info-band {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.info-item {
  padding: 26px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.info-item:last-child {
  border-right: 0;
}

.info-item h4 {
  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.info-item p {
  font-size: 15px;
  margin: 0;
}

.partner-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 44px;
  text-align: center;
}

.partner-types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  margin: 28px 0 30px;
  background: var(--bg-soft);
}

.partner-types div {
  padding: 18px 12px;
  border-right: 1px solid var(--line);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  color: var(--text);
}

.partner-types div:last-child {
  border-right: 0;
}
/*product detail */
.product-detail-page {
  padding-top: 36px;
}

.breadcrumb-wrap {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 24px;
}

.breadcrumb-wrap a {
  color: var(--text-soft);
  text-decoration: none;
}

.breadcrumb-wrap span {
  margin: 0 6px;
}

.product-detail-title {
  margin-bottom: 26px;
}

.product-detail-title h1 {
  margin-bottom: 0;
}

.product-intro {
  max-width: 980px;
  margin-bottom: 42px;
}

.product-main-block {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  align-items: center;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-main-image img {
  width: 100%;
  display: block;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}

.product-main-side h2 {
  margin-bottom: 12px;
}

.product-main-side p {
  max-width: 620px;
}

.product-variants-section {
  padding-top: 30px;
}

.variant-block {
  padding: 50px 0;
  border-bottom: 1px solid var(--line);
}

.variant-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 50px;
  align-items: center;
}

.variant-image img {
  width: 100%;
  display: block;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}

.variant-content h2 {
  margin-bottom: 16px;
}

.content-body p {
  font-size: 17px;
  line-height: 1.75;
}

.content-body h3,
.content-body h4 {
  margin-top: 24px;
  margin-bottom: 10px;
}

.content-body ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

.content-body li {
  margin-bottom: 8px;
}

.content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: var(--bg-soft);
}

.content-body table th,
.content-body table td {
  border: 1px solid var(--line);
  padding: 12px 10px;
  text-align: center;
  font-size: 15px;
}

.content-body table th {
  font-weight: 600;
  color: var(--text);
  background: #f3ece4;
}

@media (max-width: 980px) {
  .product-main-block,
  .variant-grid {
    grid-template-columns: 1fr;
  }

  .product-main-image,
  .variant-image {
    max-width: 520px;
  }

  .product-main-image img,
  .variant-image img {
    margin: 0 auto;
  }
}
/* PART 4 / PARTNER WITH US */
.partner-section {
    padding: 40px 0 30px;
    text-align: center;
}

.partner-section .section-title h2 {
    font-size: 32px;
    font-weight: 500;
    color: #4a3427;
    margin-bottom: 25px;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #ddd3ca;
    background: #f8f3ee;
    max-width: 1100px;
    margin: 0 auto 28px;
}

.partner-grid .partner-item {
    padding: 18px 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 68px;
}

.partner-grid .partner-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 18px;
    bottom: 18px;
    width: 1px;
    background: #ddd3ca;
}

.partner-grid .partner-item h4 {
    margin: 0;
    font-size: 22px;
    font-weight: 500;
    color: #4a3427;
    line-height: 1.2;
}

/* buttons under the titles */
.partner-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.partner-buttons a,
.partner-buttons .btn {
    display: inline-block;
    min-width: 190px;
    padding: 14px 28px;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.2s ease;
    text-align: center;
}

/* brown button */
.partner-buttons .btn-primary {
    background: #6b3f1f;
    color: #fff;
    border: 1px solid #6b3f1f;
}

.partner-buttons .btn-primary:hover {
    background: #5a3419;
    border-color: #5a3419;
    color: #fff;
}

/* outline button */
.partner-buttons .btn-secondary {
    background: transparent;
    color: #6b3f1f;
    border: 1px solid #a48d7c;
}

.partner-buttons .btn-secondary:hover {
    background: #f3ebe4;
    color: #6b3f1f;
}

/* mobile */
@media (max-width: 768px) {
    .partner-grid {
        grid-template-columns: 1fr 1fr;
    }

    .partner-grid .partner-item:nth-child(2n)::after {
        display: none;
    }

    .partner-section .section-title h2 {
        font-size: 24px;
    }

    .partner-grid .partner-item h4 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .partner-grid {
        grid-template-columns: 1fr;
    }

    .partner-grid .partner-item::after {
        display: none;
    }
}
/* TARGET ONLY THIS CONTACT SECTION */
.cl-partner-form {
    color: #000;
}

/* LEFT SIDE */
.cl-partner-form .inquire-left h3,
.cl-partner-form .inquire-left span,
.cl-partner-form .inquire-left p,
.cl-partner-form .inquire-left strong {
    color: #000;
}

/* RIGHT SIDE (CONTACT FORM 7 ONLY INSIDE THIS BLOCK) */
.cl-partner-form .wpcf7 label,
.cl-partner-form .wpcf7 p,
.cl-partner-form .wpcf7 span {
    color: #000 !important;
}

/* INPUT TEXT */
.cl-partner-form .wpcf7 input,
.cl-partner-form .wpcf7 textarea {
    color: #000 !important;
}
.cl-partner-form input.wpcf7-submit {
    color: #ffffff !important;
}
/* Contact block */
.contact-block {
  text-align: center;
  border-top: 1px solid var(--line);
  padding-top: 56px;
}

.contact-form-wrap {
  max-width: 620px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.input,
.textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--text);
  padding: 15px 16px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
}

.input:focus,
.textarea:focus {
  border-color: var(--accent);
}

.textarea {
  min-height: 130px;
  resize: vertical;
}

/* Footer */
.site-footer {
  margin-top: 72px;
  border-top: 1px solid var(--line);
  padding: 26px 0 38px;
  background: transparent;
}

.site-footer-inner {
  text-align: center;
  font-size: 14px;
  color: var(--text-soft);
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 10px;
}

/* Utility */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-grid,
  .products-grid,
  .info-grid,
  .partner-types {
    grid-template-columns: 1fr 1fr;
  }

  .hero-media {
    min-height: 420px;
  }
}

@media (max-width: 768px) {
  .site-header-inner {
    min-height: 74px;
  }

  .site-branding a {
    font-size: 32px;
  }

  .menu-toggle {
    display: block;
  }

  .main-navigation {
    display: none;
    width: 100%;
    padding-bottom: 18px;
  }

  .main-navigation.is-open {
    display: block;
  }

  .site-header-inner {
    flex-wrap: wrap;
  }

  .main-navigation ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .hero-grid,
  .products-grid,
  .info-grid,
  .partner-types {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 42px 28px;
  }

  .hero-media {
    min-height: 320px;
  }

  .section {
    padding: 64px 0;
  }

  .partner-panel {
    padding: 30px 22px;
  }
}
/* gallery */
/* Event page normal WordPress gallery fix */
.wp-block-gallery,
.wp-block-gallery.has-nested-images {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 18px !important;
    width: 100% !important;
    max-width: 100% !important;
}

.wp-block-gallery figure,
.wp-block-gallery.has-nested-images figure {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
}

.wp-block-gallery img,
.wp-block-gallery.has-nested-images img {
    width: 100% !important;
    height: 320px !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 12px;
}

/* Tablet */
@media (max-width: 900px) {
    .wp-block-gallery,
    .wp-block-gallery.has-nested-images {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .wp-block-gallery,
    .wp-block-gallery.has-nested-images {
        grid-template-columns: 1fr !important;
    }

    .wp-block-gallery img,
    .wp-block-gallery.has-nested-images img {
        height: auto !important;
    }
}