/* === Header: keep original background, center logo+menu vertically === */


/* ===== HERO OVERRIDES (Essence Pro) ===== */

/* .header-hero {
  background-image:
    linear-gradient(
      0deg,
      rgba(0,0,0,0.40) 50%,
      rgba(0,0,0,0.5) 100%
    ),
    url(https://woocom.dawnsinspirations.com/wp-content/uploads/2026/01/dawns-inspirations-hero.jpg) !important;
} */

/* li.entry.product img {
	padding: 1em;
} */

.header-hero {
  padding-bottom: 6vw;
  min-height: 0;
}

.hero-page-title {
  padding: 3vw 60px 0;
}

/* Mobile */
@media (max-width: 768px) {
  .header-hero {
    padding-bottom: 32px;
  }

  .hero-page-title {
    padding: 28px 20px 0;
  }

  .hero-page-title h1,
  .hero-page-title .entry-title {
    font-size: 36px;
  }
}

/* Hide hero title on homepage */
.home .hero-page-title {
  display: none;
}

/* Content */

.full-width-content .content {
    max-width: 100% !important; 
}



/* HKM Custom alterations
---------------------------------------------------------------------------------------------------- */
/* Warning style boxes */

span.info,
span.success,
span.warning,
span.error,
span.validation {
  border: 1px solid;
  margin: 20px 0px 20px;
  padding: 15px 10px 15px 50px;
  background-repeat: no-repeat;
  background-position: 10px center;
  display: block;
}

span.info {
  color: #00529b;
  background-color: #bde5f8;
  background-image: url(../../images/icons/info.png);
}

span.success {
  color: #4f8a10;
  background-color: #dff2bf;
  background-image: url(../../images/icons/success.png);
}

span.warning {
  color: #9f6000;
  background-color: #feefb3;
  background-image: url(../../images/icons/warning.png);
}

span.error {
  color: #d8000c;
  background-color: #ffbaba;
  background-image: url(../../images/icons/error.png);
}

/*Signup form styling */
form#signup .input-text {
  color: #333333;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/*Woocommerce Modifications */

#customer_login .col-1 {
  float: left;
  width: 48%;
}

.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1 {
  float: left;
  width: 100%;
}

.woocommerce #account_password_field {
  clear: left;
}

div.tutorial-featured-image,
portfolio-featured-image img {
  padding: 5px;
  border: 5px solid #efefef;
  float: left;
  max-width: 100%;
}

div.portfolio-featured-image img {
  padding: 5px;
  border: 5px solid #efefef;
}

div.featured-image-logged-in {
  float: right;
  padding: 5px;
  border: 5px solid #efefef;
}

.woocommerce div.product div.images img {
  padding: 5px;
  border: 5px solid #efefef;
}

ul.products img {
  padding: 5px;
  border: 5px solid #efefef;
}

div.buy-now-button {
  float: right;
}

div.tutorial-intro {
  text-align: center;
}

div.tutorial-intro h1 {
  text-align: left;
  font-size: 2em;
}

div.tutorial-intro p {
  text-align: left;
  margin: 20px 0 10px 0;
}

.woocommerce a.button.add_to_cart_button {
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.woocommerce a.button.add_to_cart_button:hover {
  background-color: #218838;
  color: white;
}

/* Tutorial page layout to put navigaion buttons at the bottom */
/* Grid container for portfolio archive */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 0 0 4rem 0;
  overflow: visible;
}

.portfolio-image {
  height: 200px;
  overflow: hidden;
  margin-bottom: 15px;
}

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

.portfolio-title {
  text-align: center;
  font-size: 1.6rem;
}

.portfolio-title a {
  text-decoration: none;
  color: #333;
}

.portfolio-title a:hover {
  color: #0073aa;
}

.custom-bg-tutorials .site-inner {
  background-image: url('images/dawns-inspirations-content-background.jpg');
  background-repeat: repeat-x;
  /* repeat horizontally */
  background-position: top center;
  background-size: auto;
  /* allow natural repeat */
  background-attachment: scroll;
  /* don't use fixed on mobile */
}

/* If you still want desktop to keep the fixed behavior */
@media (min-width: 769px) {
  .custom-bg-tutorials .site-inner {
    background-attachment: fixed;
    background-repeat: no-repeat;
    /* or keep as you had */
    background-size: contain;
    background-position: center center;
  }
}


/* Clear pagination */
.archive-pagination,
.pagination {
  clear: both;
  text-align: center;
  margin-top: 40px;
}

.portfolio-entry-inner {
  background: #fff;
  /* border: 1px solid #efefef; */
  /* padding: 15px; */
  /* box-sizing: border-box; */
  display: flex;
  flex-direction: column;
  height: 100%;
  /* box-shadow: 0 0.5rem 1rem rgba(1, 1, 1, 0.15); */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  will-change: transform;
}

.portfolio-entry-inner:hover {
  transform: scale(1.05);
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
  z-index: 2;
}

/* Stronger targeting with multiple classes */
.woocommerce .single_add_to_cart_button.button.alt {
  background-color: #28a745 !important;
  color: #ffffff !important;
  border: none;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 6px;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.woocommerce .single_add_to_cart_button.button.alt:hover {
  background-color: #218838 !important;
}

/* Style WooCommerce quantity input field */
.woocommerce input.qty {
  width: 80px;
  height: 45px;
  padding: 10px;
  font-size: 16px;
  text-align: center;
  border: 2px solid #ccc;
  border-radius: 6px;
  background-color: #f9f9f9;
  color: #333;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Optional: Add focus effect */
.woocommerce input.qty:focus {
  border-color: #28a745;
  outline: none;
  background-color: #fff;
}

/* Button CSS */
button,
input[type="button"],
input[type="submit"],
.btn,
.btn-primary-big,
.btn-primary-medium,
.btn-primary-small,
.btn-secondary-big,
.btn-secondary-medium,
.btn-secondary-small,
.btn-green-big,
.btn-green-medium,
.btn-green-small,
.btn-gray {
  background-clip: padding-box;
  border: medium none !important;
  border-radius: 3px;
  box-shadow: 0 -3px 0 rgba(0, 0, 0, 0.2) inset;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-family: "museo-sans", sans-serif;
  font-weight: 500;
  text-decoration: none;
}

.btn-gray {
  color: #666666;
  position: relative;
}

button,
input[type="button"],
input[type="submit"],
.btn {
  border: medium none;
  margin: 6px;
  width: auto;
}

.btn-primary-small,
.btn-secondary-small,
.btn-green-small,
.btn-gray {
  box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.2) inset;
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

button,
input[type="button"],
input[type="submit"],
.content .premise-checkout-wrap .input-submit,
.btn,
.btn-primary-big,
.btn-primary-medium,
.btn-primary-small {
  background-color: #0274be;
}

.btn-secondary-big,
.btn-secondary-medium,
.btn-secondary-small {
  background-color: #333333;
}

.btn-green-big,
.btn-green-medium,
.btn-green-small {
  background-color: #9bc23c;
  border: 2px solid #ffffff !important;
  border-radius: 4px;
}

.btn-primary-big,
.btn-secondary-big,
.btn-green-big {
  font-size: 2.4rem;
  padding: 1.6rem 3.2rem;
}

button,
input[type="button"],
input[type="submit"],
.btn,
.btn-primary-medium,
.btn-secondary-medium,
.btn-green-medium {
  font-size: 1.8rem;
  padding: 1.2rem 2.4rem;
}

.btn-primary-small,
.btn-secondary-small,
.btn-green-small {
  font-size: 1.4rem;
  padding: 0.8rem 1.6rem;
}

button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
.content .premise-checkout-wrap .input-submit:hover,
.btn:hover,
.btn-primary-big:hover,
.btn-primary-medium:hover,
.btn-primary-small:hover {
  background: none repeat scroll 0 0 #005f9d;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2) inset;
  color: #ffffff;
}

.btn-gray:hover {
  background-color: #f1f1f1;
  color: #0274be;
}

.btn-secondary-big:hover,
.btn-secondary-medium:hover,
.btn-secondary-small:hover {
  background: none repeat scroll 0 0 #222222;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2) inset;
  color: #ffffff;
}

.btn-green-big:hover,
.btn-green-medium:hover,
.btn-green-small:hover {
  background: none repeat scroll 0 0 #87ae28;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1) inset;
  color: #ffffff;
}

p.disclaimer {
  font-size: 14px;
  font-style: italic;
}

ul.tick li {
  background: url(../../images/tick.png) no-repeat scroll 0 0 rgba(0, 0, 0, 0);
  list-style: none outside none;
  margin: 1em 0;
  min-height: 30px;
  padding: 0 0 0 30px;
}

div.video {
  clear: both;
  text-align: left;
}

div.salesbox {
  float: right;
  text-align: left;
  padding: 20px;
  background: #efefef;
  margin-top: 1em;
}

div#videort {
  float: right;
  margin-left: 10px;
  border: 5px solid #eee;
  padding: 5px;
}

div#videolft {
  float: left;
  margin-right: 10px;
  border: 5px solid #eee;
  padding: 5px;
}

div#sidebar-logo {
  text-align: center;
  margin-top: 10px;
}

div#tab-description h2 {
  font-size: 1.5em;
}

div#currency-info p {
  font-size: 10px;
  font-style: italic;
  font-weight: bold;
}

div#currency-info ul.currency_switcher li {
  font-size: 12px;
}

div#image-line img {
  float: left;
  margin: 5px;
}

.woocommerce_tabs .tabs {
  display: none;
}

div.customer-quotes {
  width: 40%;
  float: right;
}

div#image-border img {
  -webkit-box-shadow: 3px 3px 3px #7c7c7c;
  box-shadow: 3px 3px 3px #7c7c7c;
}

div.homepage-header-image {
  text-align: center;
}

p#footnote {
  font-size: 10px;
}

div#retreat-landing h1 {
  font-size: 1.6em;
  margin-top: 1em;
}

div#retreat-sub-block {
  background: #efefef url("images/headline_img.gif") no-repeat scroll left center;
  clear: both;
  font-size: 1.8em;
  letter-spacing: 1px;
  min-height: 100px;
  height: 80%;
  line-height: 120%;
  padding: 10px 0 0 100px;
  margin-bottom: 1em;
}

span.sub-header {
  clear: both;
  font-weight: bold;
  line-height: 50px;
}

/*******************Retreat Landing Page******************/

#panel,
#panel2,
#option #option2 {
  padding: 5px;
}

#panel,
#panel2 {
  padding: 50px;
  display: none;
}

.post-4002 p {
  margin: 30px 0 20px 0;
}

.post-4002 .ret-underline {
  border-bottom: 3px solid #ff0000;
}

.arrow_box {
  position: relative;
  background: #94d56f;
  border: 4px solid #178501;
}

.arrow_box:after,
.arrow_box:before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.arrow_box:after {
  border-color: rgba(148, 213, 111, 0);
  border-top-color: #94d56f;
  border-width: 30px;
  margin-left: -30px;
}

.arrow_box:before {
  border-color: rgba(23, 133, 1, 0);
  border-top-color: #178501;
  border-width: 36px;
  margin-left: -36px;
}

.arrow_box a {
  text-align: center;
}

div#arrow_box {
  margin: 20px 0 20px 0;
}

/********EOF Retreat Landing Page**************************/

/******** Quotation Box ***********************************/

div#quotation {
  background: none repeat scroll 0 0 #f4f4f4;
  border: 1px solid #dddddd;
  margin: 0 15px 15px;
  padding: 10px 5px 0 5px;
}

div#quotation p {
  color: #343434;
}

div#quotation span {
  float: right;
  font-size: 0.9em;
  font-weight: bold;
  padding: 5px;
}

/*Second Quotation box*/
div#quotation-2 blockquote {
  font-size: 18px;
  font-style: italic;
  width: 100%;
  margin: 0.25em 0;
  padding: 0.25em 40px;
  line-height: 1.45;
  position: relative;
  color: #383838;
}

div#quotation-2 blockquote:before {
  display: block;
  font-size: 80px;
  position: absolute;
  left: -20px;
  top: -20px;
  color: #7a7a7a;
}

#venue-style {
  background: #a8b384;
  color: #ffffff;
  border: 1px solid #dddddd;
  margin: 0 5px 5px;
  padding: 5px 5px 0 5px;
}

#option-header h4 {
  background: #a8b384;
  color: #ffffff;
  padding: 5px 5px 5px 5px;
}

div#venue-style p {
  margin: 5px;
  padding: 0px;
}

/*i {
  border: solid #fff;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}*/

.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

/******** EOF Quotation Box *******************************/

/*********Homepage Banner *********************************/
.banner-ret {
  margin-top: 1em;
  margin-bottom: 1em;
  padding: 0.5em 0 1em 0;
}

.banner-ret-note {
  background-color: #adebad;
  border-left: 16px solid #248f24;
}

.banner-ret-text {
  font-family: "Berkshire Swash", cursive;
  font-size: 2.2em;
  margin-left: 20px;
}

#banner-ret-btn {
  margin: 20px 0 0 50px;
}

.font-lge {
  font-size: 1.5em;
}

/*************************************************/

/* DI Navigation Header */
.di-nav-header {
  display: flex;
  justify-content: right;
  align-items: top;
  float: right;
}

.di-nav-header .di-menu li {
  display: inline-block;
}

.di-nav-header .di-menu i {
  padding-top: 10px;
  margin-left: 8px;
  color: #0e99a8;
  transition: all 0.1s ease-in-out;
}

.di-nav-header .di-menu i:hover {
  text-decoration: none;
  transform: scale(1.05);
}

/* EOF Nav Header */

div#dawns-gallery img {
  border: 10px solid #fff;
  padding: 2px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* Class for the smooth image transition */
.hidden {
  display: none;
}

#event-address::before {
  clear: both;
}

#event-address {
  text-align: left;
}

hr.sep-line {
  border: 0;
  height: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/*
Events 
******************************************************/

.event-title {
  font-size: 1.2em;
  background-color: #efefef;
  color: #222;
  line-height: 1em;
  padding: 5px;
}

.event-details span {
  font-size: 0.9em;
  padding: 5px;
}

.desc-box {
  font-size: 0.9em;
  padding-left: 5px;
}

.links {
  display: flex;
}

.event-border {
  margin-bottom: 1em;
  -webkit-box-shadow: 5px 10px 17px -4px rgba(0, 0, 0, 0.21);
  -moz-box-shadow: 5px 10px 17px -4px rgba(0, 0, 0, 0.21);
  box-shadow: 5px 10px 17px -4px rgba(0, 0, 0, 0.21);
  padding-bottom: 0.5em;
}

@media only screen and (max-width: 768px) {
  .event-thumb {
    display: none;
  }

  .event-outer {
    display: flex;
  }
}

/*
EOF Events
******************************************************/

/* Custom Video display */

.di-flex {
  display: flex;
  align-items: center;
}

/* EOF Video Display */

/*
Card styles for homepage 
******************************************************/
.di-layout-container {
  width: 100%;
  display: grid;
  grid-template-columns: 31.5% 31.5% 31.5%;
  grid-auto-columns: 2fr;
  margin: 0 auto 0;
  text-align: center;
  grid-gap: 2em;
}

.card {
  background: #fff;
  box-shadow: 0 0.5rem 1rem rgba(1, 1, 1, 0.15);
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
}

.card:hover {
  transform: scale(1.05);
  /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.card-image {
  padding: 20px;
}

.card-heading {
  font-size: 2rem;
  padding-bottom: 1rem;
}

.card-body {
  font-size: 1rem;
}

.flt-right {
  float: right;
}

.img-bdr {
  padding: 5px;
  border: 5px solid #efefef;
}

.scale-up-center {
  -webkit-animation: scale-up-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: scale-up-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
}

.fade-in.start-animation {
  animation: fadeInUp 0.5s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*
Media Queries
---------------------------------------------------------------------------------------------------- */

@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3/2),
only screen and (min-device-pixel-ratio: 1.5) {
  .search-form input[type="search"] {
    background-image: url(images/icon-search@2x.png);
  }

  .content .entry-header .entry-meta .entry-comments-link a {
    background-image: url(images/icon-comments@2x.png);
  }

  .sidebar li {
    background-image: url(images/icon-li@2x.png);
  }

  .footer-widgets li {
    background-image: url(images/icon-li-footer@2x.png);
  }

  .content #genesis-responsive-slider .flex-direction-nav li a {
    background-image: url(images/icon-direction-nav@2x.png);
  }

  .content #genesis-responsive-slider .flex-control-nav li a {
    background-image: url(images/icon-control-nav@2x.png);
  }

  .genesis-nav-menu>.rss>a {
    background-image: url(images/icon-rss@2x.png);
  }

  .genesis-nav-menu>.twitter>a {
    background-image: url(images/icon-twitter-nav@2x.png);
  }
}

@media only screen and (max-width: 1200px) {
  .site-container {
    max-width: 960px;
  }

  .site-header .widget-area {
    width: 700px;
    margin-bottom: 1.5rem;
  }

  .content {
    width: 660px;
  }

  .sidebar-primary {
    width: 300px;
  }

  .title-area {
    width: 260px;
  }

  .breadcrumb {
    margin: -30px -40px 30px;
    margin: -3rem -4rem 3rem;
  }

  .content {
    padding: 30px 40px 10px;
    padding: 3rem 4rem 1rem;
  }

  .content #genesis-responsive-slider .flex-control-nav,
  .content #genesis-responsive-slider .flex-direction-nav li a,
  .content #genesis-responsive-slider .flex-direction-nav li a.prev {
    display: none;
  }

  /* HKM Custom changes 020620 */

  .header-image .title-area,
  .header-image .site-title,
  .header-image .site-title a {
    min-height: 135px;
  }

  #custom_html-2 .custom-html-widget {
    text-align: center;
  }

  .site-header .genesis-nav-menu a {
    padding: 0.5rem 0.5rem;
  }

  .site-header .widget-area {
    width: 400px;
  }

  /* EOF HKM Custom changes */
}

@media only screen and (max-width: 1023px) {
  .site-container {
    max-width: 768px;
  }

  .content,
  .sidebar-primary,
  .sidebar-secondary,
  .site-header .widget-area,
  .title-area,
  .wrap {
    width: 100%;
  }

  .header-image .title-area,
  .header-image .site-title,
  .header-image .site-title a {
    float: none;
    margin: 0 auto;
  }

  .genesis-nav-menu li,
  .site-header ul.genesis-nav-menu,
  .site-header .search-form {
    float: none;
  }

  .genesis-nav-menu,
  .site-header .search-form,
  .site-header hgroup,
  .site-title {
    text-align: center;
  }

  .genesis-nav-menu a,
  .genesis-nav-menu>.first>a,
  .genesis-nav-menu>.last>a,
  .site-header .genesis-nav-menu a {
    padding: 16px;
    padding: 1.6rem;
  }

  .site-header .search-form {
    margin: 16px auto;
    margin: 1.6rem auto;
  }

  .genesis-nav-menu li.right {
    display: none;
  }

  .content #genesis-responsive-slider .slide-excerpt {
    display: none;
  }

  .comment-list li.depth-1,
  .ping-list li.depth-1 {
    margin: 30px 0;
    margin: 3rem 0;
  }

  /* HKM Amendments */
  .di-nav-header {
    justify-content: center;
    float: none;
  }

  @media only screen and (max-width: 767px) {
    .site-container {
      max-width: 600px;
    }

    .five-sixths,
    .footer-widgets-1,
    .footer-widgets-2,
    .footer-widgets-3,
    .four-sixths,
    .home-middle .widget,
    .home-top .widget,
    .one-fourth,
    .one-half,
    .one-sixth,
    .one-third,
    .executive-pro-portfolio .portfolio,
    .three-fourths,
    .three-sixths,
    .two-fourths,
    .two-sixths,
    .two-thirds {
      margin: 0;
      width: 100%;
    }

    .genesis-nav-menu a,
    .genesis-nav-menu>.first>a,
    .genesis-nav-menu>.last>a,
    .site-header .genesis-nav-menu a {
      font-size: 14px;
      font-size: 1.4rem;
      padding: 12px;
      padding: 1.2rem;
    }

    .home-middle,
    .home-top,
    .executive-pro-portfolio .portfolio {
      text-align: center;
    }

    .executive-pro-portfolio .portfolio {
      padding: 0 0 30px;
      padding: 0 0 3rem;
    }

    .home-cta .button.alignright {
      float: none;
      margin: 16px 0 0;
      margin: 1.6rem 0 0;
    }

    .footer-widgets-1 {
      margin: 0;
    }

    /* HKM Ammendments */
    .di-layout-container {
      display: grid;
      grid-template-columns: 50% 50%;
      grid-auto-columns: 2fr;
      grid-gap: 2rem;
    }

    .site-header .widget {
      padding: 20px 0 0;
      padding: 2rem 0 0;
    }

    #cclogo {
      display: none;
    }
  }

  @media only screen and (max-width: 500px) {
    .entry-title {
      font-size: 24px;
      font-size: 2.4rem;
    }

    .content .entry-header .entry-meta .entry-comments-link {
      display: none;
    }
  }

  @media only screen and (max-width: 270px) {
    .header-image .site-title a {
      background-size: contain !important;
    }

    .site-title {
      font-size: 26px;
      font-size: 2.6rem;
    }
  }

  .social-links {
    text-align: right;
  }

  .social-links img {
    margin: 0 10px 5px 15px;
  }

  #nav_menu-2 {
    margin-top: 20px;
  }

  /* Custom Form CSS Multibuy form */
  #gform_wrapper_18 .ginput_container_radio input[type="radio"] {
    -ms-transform: scale(1.5);
    /* IE 9 */
    -webkit-transform: scale(1.5);
    /* Chrome, Safari, Opera */
    transform: scale(1.5) translateX(+25);
    margin: 0 10px 0 15px;
  }

  .gform_wrapper ul.gfield_radio li.gchoice_18_1_0 label {
    font-size: 1em !important;
    font-weight: bold;
  }

  .gform_wrapper ul.gfield_radio li.gchoice_18_1_1 label {
    font-size: 1.5em !important;
    font-weight: bold;
  }

  .gform_wrapper #field_18_9 {
    font-size: 1.75em;
  }

  .gform_wrapper #field_18_9 label {
    background: #ddd;
    width: 100%;
    padding: 5px 0 5px 2px;
    border-bottom: 2px solid #333;
  }
}

#myTab_9500 .wpsm_nav-tabs li:first-child {
  background-color: #0000 !important;
  color: white;
  /* Optional, if you want the text color to contrast */
}


/* Custom styling for currency switcher */
.currency_switcher {
  list-style: none;
  display: flex;
  gap: 4px;
  padding: 0;
  margin: 0;
}

.currency_switcher a {
  background: #eee;
  padding: 3px 8px;
  border-radius: 4px;
  text-decoration: none;
}

.currency_switcher a:hover {
  background: #ddd;
}

/* Custom styling for online classes */
.online-class img {
  padding: 2em;
}

/* Make all WooCommerce radio buttons align left with label text to the right */
.woocommerce form .form-row .woocommerce-input-wrapper {
  text-align: left !important;
}

/* Radio input itself */
.woocommerce form .form-row .woocommerce-input-wrapper input.input-radio {
  float: none !important;
  display: inline-block;
  margin: 0 6px 0 0;
  /* a bit of space before the label */
  vertical-align: middle;
}

/* Label next to radio */
.woocommerce form .form-row .woocommerce-input-wrapper input.input-radio+label {
  display: inline-block;
  margin: 0 16px 0 0;
  vertical-align: middle;
}

/* If your theme makes labels block-level in Woo forms, override that */
.woocommerce form .form-row .woocommerce-input-wrapper label {
  display: inline-block;
}

.woocommerce .price {
  font-size: 2em;
}

/* DI Home Sections (scoped so it won't affect shop pages) */
.di-home-sections {
  --di-gap: 18px;
  --di-radius: 5x;
  --di-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
  --di-shadow-hover: 0 14px 34px rgba(0, 0, 0, 0.14);
  --di-border: rgba(0,0,0,0.06);
  --di-text: inherit;
  --di-muted: rgba(0,0,0,0.65);
}

.di-home-sections .di-section {
  margin: 0 0 34px;
}

.di-home-sections .di-section__title {
  margin: 0 0 14px;
  font-size: 1.6rem;
  line-height: 1.2;
}

/* 3 column grid (responsive) */
.di-home-sections .di-grid {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
  box-sizing: border-box;
}

.di-home-sections .di-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Responsive fallbacks */
@media (max-width: 980px) {
  .di-home-sections .di-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .di-home-sections .di-grid--3 {
    grid-template-columns: 1fr;
  }
}

/* ===== Full-width layout for the New Homepage page (ID 4679) ===== */
.page-id-4679 .content-sidebar-wrap {
  display: block;
}

.page-id-4679 .content {
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
}

.page-id-4679 .sidebar-primary {
  display: none !important;
}

/* ===== Grid stays 3 columns ===== */
.page-id-4679 .di-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* ===== Product cards: full-bleed image (bigger) ===== */
.page-id-4679 .di-card--product .di-card__media {
  padding: 0 !important;
  background: transparent !important;
}

.page-id-4679 .di-card--product .di-card__media img {
  width: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important; /* full-bleed look */
  display: block;
}

/* A touch of spacing so text doesn't stick to the image */
.page-id-4679 .di-card--product .di-card__body {
  padding-top: 16px;
}

/* ===== Category cards: larger image but still “carded” ===== */
.page-id-4679 .di-card--category .di-card__media {
  padding: 10px !important;     /* less padding = bigger image */
  background: transparent !important;
}

.page-id-4679 .di-card--category .di-card__media img {
  border-radius: 5x !important;
}

/* Optional: slightly tighter gap if you want bigger visuals */
.page-id-4679 .di-grid {
  gap: 16px;
}

/* ===== Make DI cards equal-height + align content consistently ===== */

/* Make each card a flex column */
.page-id-4679 .di-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Make the link take the available height so footer sits at bottom */
.page-id-4679 .di-card__link {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
}

/* FORCE all image blocks to the same height using aspect-ratio */
.page-id-4679 .di-card__media {
  width: 100%;
  aspect-ratio: 4 / 3;          /* try 1/1 if you want square */
  overflow: hidden;
  padding: 0 !important;        /* if you previously removed padding */
}

/* Make the image fill the media box consistently */
.page-id-4679 .di-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;            /* cover = consistent crop; contain = no crop */
  object-position: center;
  display: block;
}

/* Body grows, CTA pushed down */
.page-id-4679 .di-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Push the category CTA (button) to the bottom of the body */
.page-id-4679 .di-card__cta {
  margin-top: auto;
}

/* Product footer stays pinned to bottom */
.page-id-4679 .di-card__footer {
  margin-top: auto;
}

/* ===== Fix uneven left/right whitespace + proper responsive wrapping ===== */

/* 1) Kill any UL padding/margins that cause left offset */
.page-id-4679 .di-grid {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
  box-sizing: border-box;
}

/* 2) Make the grid fill the available content width evenly */
.page-id-4679 .di-section {
  width: 100%;
  box-sizing: border-box;
  padding-left: 2em;
  padding-right: 2em;
}

/* If Genesis is adding odd padding inside entry-content, normalize it */
.page-id-4679 .entry-content {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* 3) Responsive grid that WRAPS instead of squashing cards */
.page-id-4679 .di-grid--3 {
  display: grid;
  gap: 18px;

  /* This is the key: each card tries to be at least 280px wide, otherwise it wraps */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: stretch;
}

/* Optional: if you want a slightly bigger min width on desktop */
@media (min-width: 1200px) {
  .page-id-4679 .di-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}



/* =========================
   DI Home Sections (your markup)
   ========================= */

/* Section spacing */
.di-section {
  margin: 0 0 34px;
}

.di-section__title {
  margin: 0 0 14px;
  font-size: 1.6rem;
  line-height: 1.2;
}

/* 3-column grid */
.di-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* Responsive */
@media (max-width: 980px) {
  .di-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .di-grid { grid-template-columns: 1fr; }
}

/* Card */
.di-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
  transform: translateY(0);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.di-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0,0,0,.14);
}

.di-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Reduce image “weight” so 3 columns fit nicely */
.di-card__media {
  padding: 14px;
  background: rgba(0,0,0,.02);
}

.di-card__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
}

/* Body */
.di-card__body {
  padding: 14px 14px 10px;
}

/* Category title under image */
.di-card__title--category {
  text-align: center;
  font-weight: 750;
  font-size: 1.05rem;
  margin: 0;
}

/* Best sellers: price then title */
.di-card__price {
  font-weight: 850;
  font-size: 1.35rem;
  margin: 0 0 6px;
}

.di-card__title--product {
  font-weight: 650;
  font-size: 1.02rem;
  line-height: 1.25;
  margin: 0;
}

/* Footer button area */
.di-card__footer {
  padding: 0 14px 14px;
}

/* Buttons (enticing, pill, full width) */
.di-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 5px !important;
  padding: 10px 14px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  transition: transform 140ms ease, filter 140ms ease;
}

/* Base button hover */
.di-button:hover {
  transform: translateY(-1px);
  opacity: 0.75;
}

/* PRIMARY (green) */
.di-button--primary {
  background-color: #218838;
  color: #fff;
}

.di-button--primary:hover {
  background-color: #218838 !important; /* force it to stay green */
  opacity: 0.75;
}

/* GHOST (blue) */
.di-button--ghost {
  background-color: #1661c4;
  color: #fff;
}

.di-button--ghost:hover {
  background-color: #1661c4; /* force blue */
  opacity: 0.75;
}


/* Price formatting */
.di-card__price del { opacity: .65; }
.di-card__price ins { text-decoration: none; }

