:root {
  --brand-green: #015927;
  --brand-green-dark: #00692E;
  --brand-gold: #BD9F59;
  --brand-red: #B41B17;
  --brand-blue: #39439a;
  --brand-radius: 0 15px 0 15px; /* signature corner shape */
}

/* ==========================================================================
   1. GLOBAL FINISHING TOUCHES
   ========================================================================== */

::selection {
  background: var(--brand-gold);
  color: #fff;
}
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--brand-gold);
  outline-offset: 2px;
}

/* Back-to-top button */
#back-to-top {
  background: var(--brand-green);
  color: var(--brand-gold);
  border-radius: var(--brand-radius);
  transition: background-color .2s ease;
}
#back-to-top:hover { background: var(--brand-gold); color: #fff; }

/* ==========================================================================
   2. LAYOUT & HEADER
   ========================================================================== */

@media (min-width: 1900px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm,
  .container, .t4-masthead .t4-masthead-detail {
    max-width: 1620px;
  }
}

#t4-header {
  padding: 15px 0;
  z-index: 1030; /* keep megamenu/cart dropdowns above page content */
}

#t4-topbar .custom {
  display: flex;
  align-items: center;
  position: relative;
}
#t4-topbar .custom > div:first-child {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
#t4-topbar .custom > div:last-child {
  margin-left: auto;
  margin-right: 20px;
}

.t4-header .logo-img {
  max-width: 250px;
  height: auto;
  padding: .75rem;
  border: 1px solid var(--brand-gold);
  border-radius: var(--brand-radius);
}

@media (min-width: 991px) {
  .t4-offcanvas-toggle i { display: none; }
}
@media (max-width: 991px) {
  #t4-header .bg-overlay-image { z-index: -1; }
  #t4-header { padding: 8px 0; }
  .t4-header .logo-img { max-width: 190px; }
}

/* Off-canvas toggle (burger) */
.t4-offcanvas-toggle {
  color: #fff;
  transition: color .2s ease;
}
.t4-offcanvas-toggle:hover { color: var(--brand-gold); }

/* ==========================================================================
   3. MAIN MENU & DROPDOWN
   ========================================================================== */

/* Top level only (scoped with .level0 > li so rules can't leak into dropdowns
   when the parent li carries .current/.active on category pages) */
.t4-header .t4-navbar .level0 > li > .nav-link .menu-item-title {
  font-weight: bold;
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--brand-radius);
  transition-duration: 0.2s;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.t4-header .t4-navbar .level0 > .current > .nav-link .menu-item-title,
.t4-header .t4-navbar .level0 > .active > .nav-link .menu-item-title {
  background-color: var(--brand-green-dark);
  border: 1px solid #ffffff;
}
.t4-header .t4-navbar .level0 > li > .nav-link:hover .menu-item-title {
  color: #fff;
  background-color: var(--brand-green-dark);
}
.t4-megamenu .navbar-nav > li > a,
.t4-megamenu .navbar-nav > li > .nav-link {
  padding: 20px 10px !important;
}

/* Dropdown panel — two-column category list */
.t4-megamenu .dropdown-menu.level1 {
  min-width: 30rem;
  padding: var(--spacing-sm, .75rem);
  border: 0;
  border-top: 3px solid var(--brand-gold);
  border-radius: var(--brand-radius);
  box-shadow: var(--t4-box-shadow, 0 .5rem 1rem rgba(0,0,0,.15));
}
.t4-megamenu .dropdown-menu.level1 .dropdown-menu-inner > ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px var(--spacing-sm, .75rem);
  margin: 0;
  padding: 0;
  list-style: none;
}
.t4-megamenu .dropdown-menu.level1 .dropdown-item {
  padding: 0;
  background: transparent;
}

/* Dropdown items: restore contrast (header rule paints titles white) */
.t4-header .t4-navbar .dropdown-menu .menu-item-title {
  display: block;
  padding: .5rem .85rem;
  color: var(--t4-body-color, #212529);
  font-size: .85em;
  letter-spacing: 1px;
  border: 0;
  border-radius: 0 10px 0 10px;
}
.t4-header .t4-navbar .dropdown-menu a:hover .menu-item-title,
.t4-header .t4-navbar .dropdown-menu .current .menu-item-title {
  color: #fff;
  background-color: var(--brand-green);
  border: 0;
}

/* Neutralise T4 'slide' animation which clips grid dropdowns mid-animation */
.t4-megamenu.animate.slide .dropdown > .dropdown-menu.level1 {
  min-width: 30rem;
  margin-top: 0 !important;
  transition-property: opacity;
}
.t4-megamenu.animate.slide .dropdown .dropdown-menu.level1 > div {
  min-width: 0;
  width: 100%;
  margin-left: 0 !important;
}

/* Collapsed: single column */
@media (max-width: 991.98px) {
  .t4-megamenu .dropdown-menu.level1,
  .t4-megamenu.animate.slide .dropdown > .dropdown-menu.level1 { min-width: 0; }
  .t4-megamenu .dropdown-menu.level1 .dropdown-menu-inner > ul {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   4. OFF-CANVAS MENU (mobile)
   ========================================================================== */

.t4-offcanvas {
  background: #fff;
  border-left: 3px solid var(--brand-gold);
}

/* Header: brand green with logo + gold close */
.t4-offcanvas .t4-off-canvas-header {
  background: var(--brand-green);
  padding: 1rem 1.25rem;
}
.t4-offcanvas .t4-off-canvas-header .logo-img { max-width: 150px; }
.t4-offcanvas .t4-off-canvas-header .close {
  color: var(--brand-gold);
  opacity: 1;
  font-size: 1.75rem;
  transition: color .2s ease;
}
.t4-offcanvas .t4-off-canvas-header .close:hover { color: #fff; }

/* Menu items */
.t4-offcanvas .t4-off-canvas-body .nav-link {
  padding: .9rem 1.25rem;
  border-bottom: 1px solid var(--t4-border-color, #e9ecef);
}
.t4-offcanvas .t4-off-canvas-body .menu-item-title {
  color: var(--t4-body-color, #212529);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .85em;
  transition: color .2s ease;
}
.t4-offcanvas .t4-off-canvas-body .nav-link:hover .menu-item-title,
.t4-offcanvas .t4-off-canvas-body .current .menu-item-title,
.t4-offcanvas .t4-off-canvas-body .active > .nav-link .menu-item-title {
  color: var(--brand-green);
}
.t4-offcanvas .t4-off-canvas-body .active > .nav-link {
  border-left: 3px solid var(--brand-gold);
}
/* Sub-level (drill) items */
.t4-offcanvas .t4-off-canvas-body .dropdown-menu .menu-item-title {
  text-transform: none;
  font-weight: 400;
  letter-spacing: .5px;
}

/* "Connect with us" module pinned at the bottom */
.t4-offcanvas .t4-off-canvas-body .module-title span {
  color: var(--brand-green);
  font-weight: bold;
}
.t4-offcanvas .social-list {
  display: flex;
  gap: .5rem;
  list-style: none;
  padding: 0;
}
.t4-offcanvas .social-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #fff;
  background: var(--brand-green);
  border-radius: 0 10px 0 10px;
  transition: background-color .2s ease;
}
.t4-offcanvas .social-list a:hover { background: var(--brand-gold); }

/* ==========================================================================
   5. HEADER CART (dropdown mini-cart)
   ========================================================================== */

.t4-header-r .hikashop_cart_module {
  position: relative;
  margin-inline-end: var(--spacing-sm, .75rem);
}
.hikashop_cart_empty_message img {
  width: 40px;
  transition: opacity .2s ease;
}
.hikashop_cart_empty_message img:hover { opacity: .8; }

/* "Send Enquiry" trigger */
.t4-header-r .hikashop_small_cart_checkout_link {
  display: inline-block;
  padding: .5rem 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: .85em;
  color: #fff;
  background: var(--brand-gold);
  border-radius: var(--brand-radius);
  text-decoration: none;
  transition: background-color .2s ease;
}
.t4-header-r .hikashop_small_cart_checkout_link:hover {
  color: #fff;
  background: var(--brand-green);
}

/* Dropdown panel */
.hikashop_cart_module .hikashop_cart_dropdown_content {
  position: absolute;
  top: calc(100% + .5rem);
  right: 0;
  left: auto;
  z-index: 1050;
  min-width: 20rem;
  max-width: 92vw;
  padding: var(--spacing-md, 1rem);
  background: var(--t4-body-bg, #fff);
  color: var(--t4-body-color, #212529);
  border: 0;
  border-top: 3px solid var(--brand-gold);
  border-radius: var(--brand-radius);
  box-shadow: var(--t4-box-shadow, 0 .5rem 1rem rgba(0,0,0,.15));
  animation: hkCartIn .18s ease-out;
}
@keyframes hkCartIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Cart table */
.hikashop_cart_dropdown_content table.hikashop_cart {
  width: 100%;
  margin-bottom: var(--spacing-sm, .75rem);
}
.hikashop_cart_dropdown_content th {
  padding: .35rem;
  font-size: .75em;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--t4-gray-600, #6c757d);
  border-bottom: 2px solid var(--brand-gold);
  text-align: left;
}
.hikashop_cart_dropdown_content td {
  padding: .55rem .35rem;
  border-bottom: 1px solid var(--t4-border-color, #e9ecef);
  vertical-align: middle;
}
.hikashop_cart_dropdown_content tfoot td {
  border-bottom: 0;
  border-top: 2px solid var(--brand-gold);
  font-weight: 700;
}
.hikashop_cart_dropdown_content .hikashop_product_price,
.hikashop_cart_dropdown_content .hikashop_cart_module_product_total_value {
  color: var(--brand-green);
  font-weight: 600;
  white-space: nowrap;
}
.hikashop_cart_dropdown_content .hikashop_cart_product_delete a,
.hikashop_cart_dropdown_content .hikashop_cart_module_product_delete_value a {
  color: var(--t4-gray-500, #adb5bd);
  transition: color .15s ease;
}
.hikashop_cart_dropdown_content .hikashop_cart_product_delete a:hover,
.hikashop_cart_dropdown_content .hikashop_cart_module_product_delete_value a:hover {
  color: var(--brand-red);
}
.hikashop_cart_dropdown_content .hikashop_cart_proceed_to_checkout {
  display: block;
  width: 100%;
  text-align: center;
}

/* Mobile: pin dropdown inside viewport, compact trigger */
@media (max-width: 575.98px) {
  .hikashop_cart_module .hikashop_cart_dropdown_content {
    position: fixed;
    top: auto;
    right: .5rem;
    left: .5rem;
    min-width: 0;
  }
  .t4-header-r .hikashop_small_cart_checkout_link { padding: .4rem .75rem; }
}

/* ==========================================================================
   6. HIKASHOP — SHARED (buttons, listings)
   ========================================================================== */

/* Brand buttons — replace Bootstrap blue */
.hikashop_product_page .btn-primary,
.hikashop_checkout_page .btn-primary,
.hikashop_cart_module .btn-primary,
.hikashop_cart_dropdown_content .btn-primary {
  background-color: var(--brand-green);
  border-color: var(--brand-green);
  color: #fff;
  font-weight: 600;
  letter-spacing: .02em;
  border-radius: var(--brand-radius);
  transition: background-color .2s ease, border-color .2s ease;
}
.hikashop_product_page .btn-primary:hover,
.hikashop_product_page .btn-primary:focus,
.hikashop_checkout_page .btn-primary:hover,
.hikashop_checkout_page .btn-primary:focus,
.hikashop_cart_module .btn-primary:hover,
.hikashop_cart_dropdown_content .btn-primary:hover {
  background-color: var(--brand-gold);
  border-color: var(--brand-gold);
  color: #fff;
}

/* Listing cards */
.hikashop_products_listing .hikashop_container,
.hikashop_subcategories .hikashop_container {
  border: 1px solid #eee;
  border-radius: 0 10px 0 10px;
  overflow: hidden;
  transition: box-shadow .3s ease, transform .2s ease, border-color .2s ease;
}
.hikashop_products_listing .hikashop_container:hover,
.hikashop_subcategories .hikashop_container:hover {
  box-shadow: 0 0 11px rgba(33, 33, 33, .2);
  border-color: var(--brand-gold);
  transform: translateY(-3px);
}
.hikashop_products_listing .hikashop_container .hikashop_subcontainer {
  padding: 0 !important;
}
.hikashop_products_listing .hikashop_product_name a,
.hikashop_subcategories .hikashop_category_name a {
  color: var(--brand-green);
  transition: color .2s ease;
}
.hikashop_products_listing .hikashop_product_name a:hover,
.hikashop_subcategories .hikashop_category_name a:hover {
  color: var(--brand-gold);
}
.hikashop_products_listing .hikashop_product_desc { display: none; }
.hikashop_product_listing_image { width: 100%; }
.hikashop_product_image_subdiv { width: 100% !important; }
img.hikashop_child_image { height: 130px; }

/* Carousel module */
.hikashop_carousel .hikashop_product_name {
  background: var(--brand-gold);
  padding: 10px 0;
  margin: 0;
  overflow: hidden;
  border-radius: 0 !important;
}
.hikashop_carousel .hikashop_product_name a {
  color: #fff;
  font-family: 'HeadlandOne';
  font-size: 24px;
}
.hikashop_carousel .hikashop_product_price_full {
  padding: 5px 0;
  font-size: 24px;
}
.hikashop_carousel .hikashop_subcontainer {
  overflow: hidden;
  border-radius: 10px !important;
}
#hikashop_category_information_module_204 .hikashop_product_image {
  height: auto !important;
}

/* ==========================================================================
   7. HIKASHOP — PRODUCT PAGE
   ========================================================================== */

.hikashop_product_page #hikashop_image_main_thumb_div { height: auto !important; }
#hikashop_main_image {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Main image card with gentle zoom */
.hikashop_product_page .hikashop_main_image_div {
  background: var(--t4-gray-100, #f8f9fa);
  border: 1px solid var(--t4-border-color, #e9ecef);
  border-radius: var(--brand-radius);
  overflow: hidden;
}
.hikashop_product_page .hikashop_main_image_div img { transition: transform .4s ease; }
.hikashop_product_page .hikashop_main_image_div:hover img { transform: scale(1.03); }

/* Thumbnails */
.hikashop_small_image_div img {
  border: 2px solid transparent;
  border-radius: var(--border-radius-sm, .2rem);
  transition: border-color .15s ease;
  cursor: pointer;
}
.hikashop_small_image_div img:hover,
.hikashop_small_image_div .hikashop_active_thumbnail img {
  border-color: var(--brand-green);
}

/* Details panel */
#hikashop_product_left_part { padding-right: 20px !important; }
#hikashop_product_right_part {
  background-color: #F8F8F8;
  padding: 1.5rem 2rem;
  border-radius: var(--brand-radius);
}

/* Title with gold accent underline */
.hikashop_product_right_part h1 {
  margin-bottom: var(--spacing-sm, .75rem);
  padding-bottom: var(--spacing-sm, .75rem);
  position: relative;
}
.hikashop_product_right_part h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3.5rem;
  height: 3px;
  border-radius: 3px;
  background: var(--brand-gold);
}

/* Price */
.hikashop_product_price_main .hikashop_product_price {
  font-size: 1.6em;
  font-weight: 700;
  color: var(--brand-green);
}

/* Description */
.hikashop_product_description_main {
  margin-top: var(--spacing-lg, 1.5rem);
  padding-top: var(--spacing-lg, 1.5rem);
  border-top: 1px solid var(--t4-border-color, #e9ecef);
  line-height: 1.7;
}

/* Responsive: stack cleanly, ease padding on phones */
@media (max-width: 767.98px) {
  #hikashop_product_left_part { padding-right: 0 !important; }
  #hikashop_product_right_part {
    margin-top: var(--spacing-md, 1rem);
    padding: 1.25rem 1rem;
  }
  .hikashop_product_price_main .hikashop_product_price { font-size: 1.4em; }
}

/* ==========================================================================
   8. HIKASHOP — CHECKOUT
   ========================================================================== */

/* Section headings (Tell us a bit... / Items you've selected / details) */
.hikashop_checkout_page h2,
.hikashop_checkout_page h3 {
  position: relative;
  margin: var(--spacing-lg, 1.5rem) 0 var(--spacing-md, 1rem);
  padding-bottom: .5rem;
}
.hikashop_checkout_page h2::after,
.hikashop_checkout_page h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3.5rem;
  height: 3px;
  border-radius: 3px;
  background: var(--brand-gold);
}
.hikashop_checkout_page legend {
  color: var(--brand-green);
  border-bottom: 2px solid var(--brand-gold);
  padding-bottom: .35rem;
}

/* Form fields: brand corners + gold focus ring
   (T4 template.css caps .form-control at 240px — lift that here) */
.hikashop_checkout_page .form-control,
.hikashop_checkout_page .form-select {
  width: 100%;
  max-width: 30rem;
  border-radius: 0 8px 0 8px;
  padding: .5rem .85rem;
}
.hikashop_checkout_page .form-control:focus,
.hikashop_checkout_page .form-select:focus {
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 .2rem rgba(189, 159, 89, .25);
}
.hikashop_checkout_page .hkcontrol-label { font-weight: 600; }
.hikashop_checkout_page .hikashop_field_required_label { color: var(--brand-red); }

/* Message: full-width, generous textarea */
.hikashop_checkout_page .hikashop_checkout_message_line { display: block; }
.hikashop_checkout_page .hikashop_checkout_message_line .hkc-sm-4,
.hikashop_checkout_page .hikashop_checkout_message_line .hkc-sm-8 {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
  padding: 0;
  text-align: left;
}
.hikashop_checkout_page .hikashop_checkout_message_line label {
  margin-bottom: .5rem;
}
.hikashop_checkout_page .hikashop_checkout_message_line textarea {
  width: 100%;
  max-width: 100%;
  min-height: 12rem;
  resize: vertical;
  line-height: 1.6;
}

/* Cart summary table */
.hikashop_checkout_cart th {
  font-size: .8em;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brand-green);
  border-bottom: 2px solid var(--brand-gold);
}
.hikashop_checkout_cart td { vertical-align: middle; }
.hikashop_checkout_cart .hikashop_product_checkout_cart_image {
  max-width: 110px;
  height: auto;
  border-radius: 0 10px 0 10px;
}
.hikashop_checkout_cart .hikashop_product_price {
  color: var(--brand-green);
  font-weight: 600;
  white-space: nowrap;
}
.hikashop_checkout_cart .hikashop_checkout_cart_final_total {
  font-weight: 700;
  border-top: 2px solid var(--brand-gold);
}

/* Progress banner + Send Enquiry button row */
.hikashop_checkout_page .hikashop_cart_step_current,
.hikashop_checkout_page .hikashop_accordion_default_before > div,
.hikashop_checkout_page .hikashop_accordion_default_after > div {
  background: var(--brand-green);
  color: #fff;
  border-radius: var(--brand-radius);
  padding: .5rem 1rem;
}
.hikashop_checkout_page .hkbadge {
  background: var(--brand-gold);
  color: #fff;
}
.hikashop_checkout_page .hikashop_checkout_buttons {
  margin: var(--spacing-lg, 1.5rem) 0;
}
.hikashop_checkout_page #hikabtn_checkout_next {
  padding: .6rem 1.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .9em;
}

/* Mobile: labels above inputs */
@media (max-width: 575.98px) {
  .hikashop_checkout_page .hkc-sm-4,
  .hikashop_checkout_page .hkc-sm-8 { width: 100%; padding: 0; }
  .hikashop_checkout_cart .hikashop_product_checkout_cart_image { max-width: 80px; }
}

/* ==========================================================================
   9. HOMEPAGE SECTIONS
   ========================================================================== */

#t4-slideshow .n2-ss-slider,
#t4-slideshow .n2-ss-slider * { margin: 0 !important; }
#t4-slideshow .n2-ss-layer { padding: 0 !important; }
#t4-slideshow .n2-ss-slider > div { padding: 0 !important; }
#t4-slideshow .n2-ss-layer[data-sstype="row"]:has(.slide-overlay) {
  height: 100% !important;
}
#t4-slideshow .n2-ss-layer[data-sstype="row"]:has(.slide-overlay) > .n2-ss-layer-row {
  width: 50% !important;
  height: 100% !important;
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}
#t4-slideshow .n2-ss-layer[data-sstype="row"] .n2-ss-layer-row-inner {
  margin-top: 20px;
}
.t4-slideshow .t4-module { margin: 0; }

@media (max-width: 1720px) {
  #t4-slideshow .n2-ss-layer[data-sstype="row"]:has(.slide-overlay) > .n2-ss-layer-row {
    width: 100% !important;
    height: 100% !important;
    clip-path: none;
  }
}

.t4-section-1 .wf-columns { padding: 30px 0; }
.t4-section-1 .wf-column {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.t4-section-1 .wf-column p {
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
}
.t4-section-1 .wf-column img { margin-left: 10px; }

.t4-section-2 { padding: 60px 0 40px 0; }
.t4-section-3 { margin: 25px 0 50px 0; }

.t4-section-4 {
  background-color: var(--brand-gold);
  padding: 20px 0;
}
.t4-section-4 .acym_module_form {
  display: flex;
  justify-content: center;
  align-items: center;
}
.t4-section-4 .acym_module_form .acym_introtext {
  color: #ffffff;
  margin-right: 10px;
  font-size: 20px;
  font-weight: bold;
}
.t4-section-4 .acym_module_form input {
  cursor: pointer;
  max-width: 95%;
}
.t4-section-4 .subbutton {
  background-color: var(--brand-red) !important;
  border: none !important;
  border-radius: var(--brand-radius);
}
@media (max-width: 767.98px) {
  .t4-section-4 .acym_module_form { flex-wrap: wrap; gap: .5rem; }
  .t4-section-2 { padding: 40px 0 25px 0; }
}

@media (min-width: 768px) {
  .home-page .t4-main-body {
    padding-top: 5rem;
    padding-bottom: 6rem;
  }
}

/* Home panels */
.home-panels .wf-columns {
  display: flex !important;
  gap: 0;
}
.home-panels .wf-column {
  float: none !important;
  flex: 1 1 50%;
  width: auto !important;
  box-sizing: border-box;
}
.home-panels .text {
  background-color: #F8F8F8;
  padding: 25px 40px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  border-radius: 0 20px 20px 0;
}
.home-panels .text p { text-align: center; }
.home-panels .text h3 {
  text-align: center;
  text-transform: uppercase;
}
.home-panels .text ul { margin: 10px 0; }
.home-panels .about p { text-align: justify; }
.home-panels .text .button {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}
.home-panels .text .button #green { background-color: var(--brand-gold); }
.home-panels .text .button #red { background-color: var(--brand-red); }
.home-panels .text .button a {
  padding: 10px 20px;
  color: #ffffff;
  font-weight: bold;
}
.home-panels .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Responsive: stack panels on small screens */
@media (max-width: 767.98px) {
  .home-panels .wf-columns { flex-direction: column; }
  .home-panels .text {
    border-radius: 0 0 20px 20px;
    padding: 20px;
  }
}

li::marker { color: var(--brand-gold); }

/* Product range panels */
.product-range .wf-columns {
  display: flex;
  gap: 20px;
  margin: 10px 0 20px 0;
}
.product-range .wf-column {
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease;
  border-radius: 10px;
}
.product-range .wf-column:hover { transform: scale(1.01); }
.product-range .wf-column img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-range .wf-column p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  margin: 0;
  padding: 15px;
  background-color: rgb(57, 67, 154);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: height 0.2s ease, background-color 0.2s ease, align-items 0.2s ease, text-align 0.2s ease;
}
.product-range .wf-column:hover p {
  height: 100%;
  align-items: flex-start;
  text-align: left;
  background-color: rgba(57, 67, 154, .85);
}
.product-range .wf-column .title {
  font-size: 1.1rem;
  font-weight: 600;
  width: 100%;
}
.product-range .wf-column .extra {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.2s ease;
  font-size: 0.9rem;
}
.product-range .wf-column:hover .extra {
  max-height: 100px;
  opacity: 1;
  margin-top: 15px;
}
.product-range h3,
.modulegoogle-reviews h3 {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 15px;
}
@media (max-width: 767.98px) {
  .product-range .wf-columns { flex-direction: column; }
}

#Mod203 .custom {
  padding: 10px 0;
  background-color: var(--brand-green);
}
#Mod203 h3 {
  text-align: center;
  color: #ffffff;
  font-size: 25px;
}

/* ==========================================================================
   10. CONTENT PAGES (contact / about / produce / sidebar)
   ========================================================================== */

.contact-content iframe { border-radius: 10px; }
.contact-content .wf-columns:first-of-type { margin-bottom: 10px; }
.contact-content .wf-columns:first-of-type .wf-column:nth-child(2) {
  background: var(--brand-green);
  border-radius: 10px;
  padding: 20px;
}
.contact-content .formControlLabel { display: none; }
.contact-content .form-control { max-width: none; }
.contact-content .formControls,
.contact-content .rsform-submit-button { width: 100%; }
.contact-content .rsform-submit-button {
  background-color: var(--brand-red);
  border: 1px solid var(--brand-red);
  font-weight: bold;
}
.contact-content .wf-columns:first-of-type .wf-column:nth-child(1) {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  background: #F8F9FA;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}
.contact-content .wf-columns:first-of-type .wf-column:nth-child(1) span {
  display: inline-block;
  width: 80px;
  font-weight: bold;
  color: var(--brand-blue);
}
.contact-content .wf-columns:first-of-type .wf-column:nth-child(1) h3 {
  text-transform: uppercase;
}
.contact-content .wf-columns:first-of-type .wf-column:nth-child(1) p {
  margin: 20px 0;
}
.contact-content .wf-columns:first-of-type .wf-column:nth-child(1) a {
  color: #000;
  transition: color 0.2s;
}
.contact-content .wf-columns:first-of-type .wf-column:nth-child(1) a:hover {
  color: var(--brand-blue);
}
.contact-content .wf-columns:first-of-type .wf-column:nth-child(1) > div:nth-child(2) {
  text-align: left;
}

.about-content .wf-column:nth-child(1) {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #F8F9FA;
  padding: 20px;
  border-radius: 10px;
}
.about-content .wf-column:nth-child(1) h3 {
  text-align: center;
  text-transform: uppercase;
}

.produce { margin-bottom: 20px; }
.produce .wf-column {
  background-color: #F8F9FA;
  border-radius: 10px;
  padding: 20px;
  text-align: justify;
}
.produce .wf-column h3 {
  text-align: center;
  text-transform: uppercase;
}
.produce-images img { border-radius: 10px; }

/* Right sidebar */
.sidebar-r .module {
  background-color: #F8F9FA;
  border-radius: 10px;
  padding: 10px;
  margin-top: 1rem;
}
.sidebar-r ul { width: 100%; }
.sidebar-r li {
  border-bottom: 1px solid var(--brand-blue);
  margin: 0 !important;
}
.sidebar-r li:first-of-type { border-top: 1px solid var(--brand-blue); }
.sidebar-r li a {
  padding: 15px 0 !important;
  color: #ffffff;
  transition-duration: 0.2s;
}
.sidebar-r li:hover a {
  font-weight: bold;
  color: #ffffff;
}
.sidebar-r .module-title {
  border-bottom: none;
  margin: 0;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
}
.sidebar-r .module-title span {
  border-bottom: none;
  padding: 0;
  color: var(--brand-gold);
}
.sidebar-r a span { color: var(--brand-gold); }
.sidebar-r .current a { font-weight: bold; }

/* ==========================================================================
   11. FOOTER
   ========================================================================== */

/* Footnav: rich brand-green panel to match the header */
.t4-footnav {
  background-color: var(--brand-green);
  color: rgba(255, 255, 255, .85);
  border-top: 3px solid var(--brand-gold);
  padding: 2.5rem 0 1.5rem;
}
.t4-footnav .module-title span {
  font-weight: bold !important;
  font-size: 20px;
  color: #fff;
  display: inline-block;
  padding-bottom: .35rem;
  border-bottom: 2px solid var(--brand-gold);
}
.t4-footnav .menu-item-title,
.t4-footnav p, .t4-footnav .Location {
  color: rgba(255, 255, 255, .85);
  transition: color .2s ease;
}
.t4-footnav a { transition-duration: 0.2s; text-decoration: none; }
.t4-footnav a:hover .menu-item-title {
  color: var(--brand-gold);
  padding-left: 4px;
}
.t4-footnav .nav-link,
.t4-footnav .dropdown-item {
  padding: .3rem 0;
  background: transparent;
}
.t4-footnav .Location strong { color: #fff; }

/* Product Categories: two-column list so the column isn't a mile long */
.t4-footnav .footnav-2 .navbar-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 var(--spacing-sm, .75rem);
}

/* Footer logo card */
.t4-footnav .footnav-4 img {
  max-width: 200px;
  height: auto;
  padding: .75rem;
  border: 1px solid var(--brand-gold);
  border-radius: var(--brand-radius);
}

@media (max-width: 575.98px) {
  .t4-footnav .footnav-2 .navbar-nav { grid-template-columns: 1fr; }
  .t4-footnav .t4-col { margin-bottom: var(--spacing-md, 1rem); }
}

/* Footer bar */
.t4-footer {
  background-color: var(--brand-green-dark);
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, .15);
}
.t4-footer .container {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.t4-footer .footer1 {
  text-align: center;
  font-size: .9em;
  letter-spacing: .5px;
}
.t4-footer a {
  color: var(--brand-gold);
  text-decoration: none;
  transition: color .2s ease;
}
.t4-footer a:hover { color: #ffffff; }
