@charset "UTF-8";

/* ---------------------------
   CSS Variables
---------------------------- */
:root {
  --primary-color: #2c3e50;
  --secondary-color: #e74c3c;
  --accent-color: #3498db;
  --light-color: #ecf0f1;
  --dark-color: #2c3e50;
  --text-color: #333;
  --text-light: #7f8c8d;
  --white: #ffffff;
  --box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* ---------------------------
   Global Resets & Utilities
---------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

.nopad {
  padding: 0 !important;
}

/* ---------------------------
   Typography & Content
---------------------------- */
.post-content p {
  margin: 1em 0 !important;
}

.post-content ol li,
.post-content ul li {
  margin-top: 20px;
}

.post-content p strong {
  display: block;
  margin: 40px 0 20px;
}

.text-justify,
.neobox-text p {
  text-align: justify;
}

.small-text {
  font-size: 12px;
}

.quote {
  position: relative;
  background: #70988A;
  color: #fff;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  max-width: calc(100% - 200px);
  margin: 0 auto;
}
.quote::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px;
  border-style: solid;
  border-color: #70988A transparent transparent transparent;
}

/* ---------------------------
   Header Icons
---------------------------- */
.with-icon-home p::before,
.with-icon-phone p::before,
.with-icon-clock p::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--secondary-color);
  margin-right: 8px;
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
  line-height: 1;
}
.with-icon-home p::before  { content: "\f015"; }
.with-icon-phone p::before { content: "\f095"; }
.with-icon-clock p::before { content: "\f017"; }

/* ---------------------------
   Site Gradient
---------------------------- */
.site-gradient {
  background: linear-gradient(to right, #f5b091 0%, #f8b5b4 35%, #f6b6cd 75%, #e9a8e3 100%);
}

/* ---------------------------
   Layout Container
---------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------------------------
   Featured & Hero Images
---------------------------- */
.band-loop img {
  display: block;
  margin: 0 auto;
  max-height: 250px;
  width: 100%;
}

.hp-hero img {
  display: block;
  max-height: 1000px;
  width: auto;
  height: auto;
}
@media (min-width: 1600px) {
  .hp-hero img {
    max-width: 800px;
  }
}

/* ---------------------------
   Products Section
---------------------------- */
.products-section {
  background-color: transparent;
  padding: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 0px;
}

.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
@supports not (aspect-ratio: 1/1) {
  .product-image::before {
    content: "";
    display: block;
    padding-top: 100%;
  }
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-overlay {
  opacity: 1;
}

.product-card h3 {
  padding: 20px 20px 5px;
  font-size: 1.3rem;
  color: var(--primary-color);
  text-align: center;
}
.product-card p {
  padding: 0 20px 20px;
  font-weight: 600;
  color: var(--secondary-color);
  text-align: center;
}
/*----------------------------
 * WooCommerce Description Spacing
 * -----------------------------*/

/* paragraphs spacing */
.sp-product-data-tabs-shortcode 
  .woocommerce-Tabs-panel--description p {
    margin-bottom: 1em !important;
}

/* heading spacing */
.sp-product-data-tabs-shortcode 
  .woocommerce-Tabs-panel--description h2 {
    margin-top: 1.5em !important;
    margin-bottom: 0.75em !important;
}

.woocommerce-Tabs-panel--description h2  {display: none !important;}

/* ---------------------------
   WooCommerce Variations
---------------------------- */
/* 1. Center the table as a block */
table.variations {
  margin: 0 auto !important;
  /* ensure natural column sizing */
  table-layout: auto !important;
}

/* 2. Left column: min-width 150px, left-align text, vertically middle */
table.variations th.label {
  min-width: 150px !important;
  text-align: left !important;
  vertical-align: middle !important;
  white-space: nowrap;
}

/* 3. Value column: left-align content, vertically middle */
table.variations td.value {
  text-align: left !important;
  vertical-align: middle !important;
}

/* 4. Radio wrapper: keep radios left-aligned and vertically centered */
table.variations td.value .variation-radio-wrapper {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: flex-start !important;
  align-items: center !important;
  gap: 0.5rem; /* optional spacing */
}

/* Variation Radios -> Buttons */
.variations_button {margin-top: 20px;}
/* target the variation price inside your custom cart block */
.sp-custom-cart .woocommerce-variation-price .price {
  font-weight: 700;
  color: red;
}

/* if you need to hit the numeric amount itself */
.sp-custom-cart .woocommerce-variation-price .woocommerce-Price-amount.amount {
  font-size: 1.5em;
}

.variation-radio-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0;
}
.variation-radio-wrapper input[type="radio"] {
  display: none;
}
.variation-radio-wrapper label {
  padding: 8px 12px;
  background: #7e1d16;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}
.variation-radio-wrapper input[type="radio"]:checked + label {
  background: var(--secondary-color);
}
.variations th.label {
  text-align: left !important;
  padding-right: 10px;
  vertical-align: top;
}

/*----------------------------
 * WooCommerce Product Designer
 * ---------------------------*/

/* ===== Designer page header fixes ===== */
body.page-slug-pdr_designer header ul,
body.page-slug-pdr_designer .site-header ul,
body.page-slug-pdr_designer nav ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Horizontal menu layout */
body.page-slug-pdr_designer header .menu,
body.page-slug-pdr_designer .site-header .menu,
body.page-slug-pdr_designer nav .menu,
body.page-slug-pdr_designer header ul.menu,
body.page-slug-pdr_designer header nav ul {
  display: flex !important;
  gap: 1.25rem;          /* space between links */
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* Bullet fallback guards */
body.page-slug-pdr_designer header li,
body.page-slug-pdr_designer header .menu > li {
  list-style: none !important;
}

/* Link look (match your theme palette) */
body.page-slug-pdr_designer header a {
  text-decoration: none;
  color: #15344b;        /* your navy */
  font-weight: 600;
}
body.page-slug-pdr_designer header a:hover {
  opacity: .85;
}

/* Header row alignment (logo left, menu right) */
body.page-slug-pdr_designer header .container,
body.page-slug-pdr_designer header .sp-container,
body.page-slug-pdr_designer header .seedprod-container,
body.page-slug-pdr_designer header .site-header > .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Optional: tighten big white gap under the logo if present */
body.page-slug-pdr_designer header {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* Keep the top info bar readable */
body.page-slug-pdr_designer .top-bar,
body.page-slug-pdr_designer .sp-topbar {
  background: #243646;  /* your dark blue */
  color: #fff;
}


/* ---------------------------
   Buttons & Links
---------------------------- */
.btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--secondary-color);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
}
.btn:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
}

.sp-posts-block-read-more a,
.sidebar-list li {
  display: block;
  width: 100%;
  padding: 10px;
  margin: 5px 0;
  background-color: #0062cc;
  color: #fff !important;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}
.sp-posts-block-read-more a:hover { background-color: #8AB0A4; }
.sidebar-list li:hover          { background-color: #B22222; }

.link-button a {
  display: inline-block;
  margin: 30px 0;
  padding: 10px 20px;
  background-color: #113450;
  color: #fff;
  text-decoration: none;
}

.wp-element-button {
  padding: 15px;
  border-radius: 10px;
}


/* ---------------------------
   Neomorphic Cards
---------------------------- */
.neobox,
.neomorphic-card {
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}
.neobox {
  background-color: #1C3B72;
  color: #fff;
  box-shadow: 5px 5px 15px #162F58, -5px -5px 15px #28518A;
  margin: 10px;
}
.neobox:hover {
  transform: translateY(-2px);
  box-shadow: inset 5px 5px 15px #d1d1d1, inset -5px -5px 15px #fff;
}
.neomorphic-card {
  background: #e0e0e0;
  box-shadow: 8px 8px 15px #a3a3a3, -8px -8px 15px #fff;
  margin: 20px;
  text-align: center;
}
.neomorphic-card:hover {
  transform: translateY(-2px);
  box-shadow: inset 8px 8px 15px #a3a3a3, inset -8px -8px 15px #fff;
}

/* ---------------------------
   Gravity Forms
---------------------------- */
.gform_description { margin-top: 20px; }
.gform_wrapper .gform_body .gform_fields .gfield { margin-bottom: 30px; }
.gform_button { padding: 10px; }

/* ---------------------------
   Alignment Helpers
---------------------------- */
.alignleft {
  float: left;
  padding-right: 20px;
  padding-bottom: 20px;
}
.alignright {
  float: right;
  padding-left: 20px;
  padding-bottom: 20px;
}
.aligncenter,
img.aligncenter {
  display: block;
  margin: 0 auto;
  clear: both;
}
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* ---------------------------
   Responsive Layouts
---------------------------- */
@media (orientation: portrait) {
  .mediarow,
  .mediarow-reverse {
    display: flex;
    flex-wrap: wrap;
  }
  .mediarow-reverse {
    flex-wrap: wrap-reverse;
  }
  .mediacol {
    width: 100% !important;
  }
}

@media (max-width: 767px) {
  .gc-wrapless {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .cta-bar h3 {
    font-size: 18px !important;
  }
}