.elementor-kit-98{--e-global-color-primary:#A8843F;--e-global-color-secondary:#0F0F0F;--e-global-color-text:#BFBFBF;--e-global-color-accent:#BFBFBF;--e-global-color-f8ff434:#141414;--e-global-color-4c1ce0a:#2A2A2A;--e-global-color-8a420f8:#A8843F;--e-global-typography-primary-font-family:"Montserrat";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Lato";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Lato";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;color:#BFBFBF;font-size:16px;font-weight:400;line-height:24px;}.elementor-kit-98 button,.elementor-kit-98 input[type="button"],.elementor-kit-98 input[type="submit"],.elementor-kit-98 .elementor-button{background-color:#C6A15B;font-weight:500;color:#000000;border-style:solid;border-width:2px 2px 2px 2px;border-radius:4px 4px 4px 4px;padding:14px 28px 14px 28px;}.elementor-kit-98 button:hover,.elementor-kit-98 button:focus,.elementor-kit-98 input[type="button"]:hover,.elementor-kit-98 input[type="button"]:focus,.elementor-kit-98 input[type="submit"]:hover,.elementor-kit-98 input[type="submit"]:focus,.elementor-kit-98 .elementor-button:hover,.elementor-kit-98 .elementor-button:focus{background-color:#A8843F;color:#000000;}.elementor-kit-98 e-page-transition{background-color:#FFBC7D;}.elementor-kit-98 a{color:#C9A24D;text-decoration:none;}.elementor-kit-98 h1{color:#F2F2F2;font-size:56px;font-weight:500;line-height:1.2px;letter-spacing:-0.5px;}.elementor-kit-98 h2{color:#F2F2F2;font-size:40px;font-weight:500;line-height:1.25px;}.elementor-kit-98 h3{color:#F2F2F2;font-size:26px;font-weight:500;}.elementor-kit-98 h4{color:#F2F2F2;}.elementor-kit-98 h5{color:#F2F2F2;}.elementor-kit-98 h6{color:#F2F2F2;}.elementor-kit-98 img{border-radius:0px 0px 0px 0px;box-shadow:0px 0px 0px 0px rgba(0,0,0,0.5);}.elementor-kit-98 img:hover{box-shadow:0px 0px 0px 0px rgba(0,0,0,0.5);}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1200px;}.e-con{--container-max-width:1200px;--container-default-padding-top:20px;--container-default-padding-right:0px;--container-default-padding-bottom:20px;--container-default-padding-left:0px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ============================================================
   INSPIRED BY NATURE PHOTOGRAPHY — PREMIUM GALLERY CARD CSS
   Author: ChatGPT
   Style: Clean, Minimal, Fine-Art Presentation
   Applies to cards using class: gallery-card
============================================================ */

/* -----------------------------
   CARD BASE STYLE
------------------------------ */
.gallery-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    padding: 0;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    background: #ffffff;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Subtle lift on hover */
.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

/* -----------------------------
   IMAGE STYLING
------------------------------ */
.gallery-card img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    transition: transform 0.45s ease, opacity 0.35s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Smooth zoom-in hover */
.gallery-card:hover img {
    transform: scale(1.035);
    opacity: 0.96;
}

/* -----------------------------
   TITLE STYLING
------------------------------ */
.gallery-card .gallery-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a; /* Adjust for brand */
    letter-spacing: 0.25px;
    margin: 2px 0 0;
    transition: color 0.3s ease, letter-spacing 0.3s ease;
}

/* Elegant hover accent */
.gallery-card:hover .gallery-title {
    letter-spacing: 0.4px;
    color: #3f7fbf; /* Use your brand accent color */
}

/* -----------------------------
   SUBHEADING STYLING
------------------------------ */
.gallery-card .gallery-subheading {
    font-size: 15px;
    font-weight: 300;
    color: #6a6a6a;
    line-height: 1.35;
    max-width: 85%;
    margin: 0 auto 6px;
    opacity: 0.88;
    transition: opacity 0.3s ease;
}

/* Slight fade effect on hover */
.gallery-card:hover .gallery-subheading {
    opacity: 1;
}

/* -----------------------------
   RESPONSIVE STYLING
------------------------------ */
@media (max-width: 1024px) {
    .gallery-card {
        border-radius: 12px;
    }
    .gallery-card img {
        border-radius: 12px;
    }
    .gallery-card .gallery-title {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .gallery-card {
        border-radius: 10px;
    }
    .gallery-card img {
        border-radius: 10px;
    }
    .gallery-card .gallery-title {
        font-size: 20px;
    }
    .gallery-card .gallery-subheading {
        font-size: 14px;
        max-width: 90%;
    }
}
/* FORCE GRID INSIDE ELEMENTOR HTML WIDGET */
.force-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 32px !important;
  max-width: 1140px;
  margin: 0 auto;
}

/* Ensure anchor cards behave correctly */
.force-grid > a {
  display: block;
  width: 100%;
}

/* Tablet */
@media (max-width: 1024px) {
  .force-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .force-grid {
    grid-template-columns: 1fr !important;
  }
}
/* =========================================
   INDIVIDUAL GALLERY PAGE BASE
========================================= */
.gallery-page {
  background-color: #0f1113;
  padding: 80px 0;
}

/* =========================================
   HERO HEADER
========================================= */
.gallery-hero {
  background-color: #0f1113;
  padding: 120px 20px 80px;
  text-align: center;
}

.gallery-hero h1 {
  color: #ffffff;
  font-size: 42px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.gallery-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  letter-spacing: 0.05em;
}

/* =========================================
   IMAGE GRID
========================================= */
.gallery-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Images */
.gallery-images img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

/* Hover (subtle) */
.gallery-images img:hover {
  transform: scale(1.02);
  opacity: 0.95;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1024px) {
  .gallery-images {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-hero h1 {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .gallery-images {
    grid-template-columns: 1fr;
  }

  .gallery-hero h1 {
    font-size: 28px;
  }
}

.wildlife-gallery-products .price,
.wildlife-gallery-products .star-rating,
.wildlife-gallery-products .woocommerce-product-rating {
  display: none !important;
}
/* FORCE BLACK BACKGROUND */
.wildlife-gallery-products,
.wildlife-gallery-products * {
  background-color: #111111 !important;
}

/* RESET ALL WOOCOMMERCE PRODUCT SPACING */
.wildlife-gallery-products ul.products {
  margin: 0 !important;
  padding: 0 !important;
}

.wildlife-gallery-products ul.products li.product {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

/* REMOVE CARD-LIKE STYLES */
.wildlife-gallery-products li.product a {
  padding: 0 !important;
  margin: 0 !important;
}

/* IMAGE SPACING */
.wildlife-gallery-products li.product img {
  display: block;
  margin: 0 0 6px 0 !important;
}

/* TITLE SPACING */
.wildlife-gallery-products li.product h2,
.wildlife-gallery-products li.product .woocommerce-loop-product__title {
  margin: 0 0 12px 0 !important;
  padding: 0 !important;
  color: #ededed;
}

/* DIVIDER BETWEEN ITEMS */
.wildlife-gallery-products li.product {
  border-bottom: 1px solid #2a2a2a;
  padding-bottom: 24px !important;
  margin-bottom: 24px !important;
}

/* REMOVE LAST DIVIDER */
.wildlife-gallery-products li.product:last-child {
  border-bottom: none !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
/* === FORCE PRODUCT CATEGORY TILES INTO 4 COLUMNS (DESKTOP) === */

/* Target the Product Categories widget output */
.elementor-widget-woocommerce-product-categories .woocommerce ul.products,
.elementor-widget-woocommerce-product-categories ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

/* Remove Woo/Astra column widths/floats that force 1 per row */
.elementor-widget-woocommerce-product-categories .woocommerce ul.products li.product-category,
.elementor-widget-woocommerce-product-categories ul.products li.product-category {
  float: none !important;
  width: auto !important;
  max-width: none !important;
  flex: none !important;
  margin: 0 !important;
}

/* Some themes set anchors/images to block with max widths that break grids */
.elementor-widget-woocommerce-product-categories ul.products li.product-category a {
  display: block !important;
  position: relative !important;
}

/* Tablet */
@media (max-width: 1024px) {
  .elementor-widget-woocommerce-product-categories .woocommerce ul.products,
  .elementor-widget-woocommerce-product-categories ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .elementor-widget-woocommerce-product-categories .woocommerce ul.products,
  .elementor-widget-woocommerce-product-categories ul.products {
    grid-template-columns: 1fr !important;
  }
}
/* Override Woo columns-1 / columns-* classes if present */
.elementor-widget-woocommerce-product-categories ul.products[class*="columns-"] {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}
@media (max-width: 1024px) {
  .elementor-widget-woocommerce-product-categories ul.products[class*="columns-"] {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 767px) {
  .elementor-widget-woocommerce-product-categories ul.products[class*="columns-"] {
    grid-template-columns: 1fr !important;
  }
}
/* --- Category tiles from [product_categories] shortcode --- */
ul.products li.product-category {
  position: relative;
  overflow: hidden;
}

ul.products li.product-category img {
  height: 280px;
  width: 100%;
  object-fit: cover;
  display: block;
}

/* Hide default count if it appears */
ul.products li.product-category .count {
  display: none !important;
}

/* Put title on the image */
ul.products li.product-category h2.woocommerce-loop-category__title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  margin: 0 !important;
  text-align: center;
  color: #fff !important;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 3;
}

/* Gradient overlay for legibility */
ul.products li.product-category::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.55)
  );
  z-index: 2;
}

/* Make sure link sits above overlay */
ul.products li.product-category a {
  position: relative;
  z-index: 1;
  display: block;
}
/* ===== Shop by Collection (shortcode) - Astra override ===== */
.shop-collections .woocommerce ul.products,
.shop-collections ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Kill Astra/Woo one-column forcing */
.shop-collections ul.products li.product-category {
  float: none !important;
  width: auto !important;
  max-width: none !important;
  flex: none !important;
  margin: 0 !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Image sizing */
.shop-collections ul.products li.product-category img {
  height: 280px !important;
  width: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* Remove count */
.shop-collections ul.products li.product-category .count {
  display: none !important;
}

/* Put title ON the image */
.shop-collections ul.products li.product-category .woocommerce-loop-category__title {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 18px !important;
  margin: 0 !important;
  padding: 0 12px !important;
  background: transparent !important;
  text-align: center !important;
  color: #ffffff !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  z-index: 3 !important;
}

/* Readability overlay */
.shop-collections ul.products li.product-category::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.10),
    rgba(0,0,0,0.60)
  ) !important;
  z-index: 2 !important;
}

/* Keep link clickable above overlay */
.shop-collections ul.products li.product-category a {
  position: relative !important;
  z-index: 4 !important;
  display: block !important;
}

/* Responsive */
@media (max-width: 1024px) {
  .shop-collections ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 767px) {
  .shop-collections ul.products {
    grid-template-columns: 1fr !important;
  }
}
.shop-collections ul.products li.product-category .woocommerce-loop-category__title {
  bottom: 22px !important;
}

.shop-collections ul.products li.product-category::before {
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.10),
    rgba(0,0,0,0.65)
  ) !important;
}
.shop-wildlife .woocommerce ul.products,
.shop-wildlife ul.products { 
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.shop-wildlife ul.products li.product-category {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  position: relative !important;
  overflow: hidden !important;
}

.shop-wildlife ul.products li.product-category img {
  height: 280px !important;
  width: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.shop-wildlife ul.products li.product-category .count { display: none !important; }

.shop-wildlife ul.products li.product-category .woocommerce-loop-category__title {
  position: absolute !important;
  left: 0 !important; right: 0 !important;
  bottom: 22px !important;
  margin: 0 !important;
  padding: 0 12px !important;
  background: transparent !important;
  text-align: center !important;
  color: #fff !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  z-index: 3 !important;
}

.shop-wildlife ul.products li.product-category::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to bottom, rgba(0,0,0,0.10), rgba(0,0,0,0.65)) !important;
  z-index: 2 !important;
}

.shop-wildlife ul.products li.product-category a {
  position: relative !important;
  z-index: 4 !important;
  display: block !important;
}

@media (max-width: 1024px) { .shop-wildlife ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; } }
@media (max-width: 767px) { .shop-wildlife ul.products { grid-template-columns: 1fr !important; } }
/* =========================================================
   FORCE Consent field text readable (WPForms ID 11734)
   ========================================================= */

/* Target BOTH possible wrappers WPForms uses */
#wpforms-11734,
#wpforms-form-11734 {
  color: rgba(255,255,255,0.85);
}

/* Consent field label ("Consent") */
#wpforms-11734 .wpforms-field-label,
#wpforms-form-11734 .wpforms-field-label {
  color: rgba(255,255,255,0.92) !important;
  font-weight: 600 !important;
}

/* Checkbox choice text (this is the line that is blue/invisible) */
#wpforms-11734 .wpforms-field-checkbox label,
#wpforms-11734 .wpforms-field-checkbox label *,
#wpforms-11734 .wpforms-field-checkbox .wpforms-field-label-inline,
#wpforms-11734 .wpforms-field-checkbox .wpforms-field-label-inline *,
#wpforms-form-11734 .wpforms-field-checkbox label,
#wpforms-form-11734 .wpforms-field-checkbox label *,
#wpforms-form-11734 .wpforms-field-checkbox .wpforms-field-label-inline,
#wpforms-form-11734 .wpforms-field-checkbox .wpforms-field-label-inline * {
  color: rgba(255,255,255,0.85) !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}
#enter-to-win-form {
  scroll-margin-top: 120px;
/* Custom Request Form Labels */
.wpforms-form label,
.wpforms-form .wpforms-field-label,
.wpforms-form .wpforms-field-label-inline,
.wpforms-form .wpforms-field-sublabel {
    color: #ffffff !important;
}

/* Required asterisk */
.wpforms-required-label {
    color: #d4a94e !important;
}

/* Descriptions under fields */
.wpforms-form .wpforms-field-description {
    color: #d0d0d0 !important;
}
/* Placeholder text */
.wpforms-form input::placeholder,
.wpforms-form textarea::placeholder,
.wpforms-form select::placeholder {
    color: #8f98a3 !important;
    opacity: 1 !important;
}
/* Submit button */
.wpforms-form button[type="submit"],
.wpforms-submit {
    background: #A8843F !important;
    border: 1px solid #A8843F !important;
    color: #000000 !important;
    font-weight: 600;
    border-radius: 4px;
}

.wpforms-form button[type="submit"]:hover,
.wpforms-submit:hover {
    background: #d4a94e !important;
    border-color: #d4a94e !important;
}/* End custom CSS */