@charset "UTF-8";
/*
FILE: style.scss
FOLDER: wp-content/themes/skilpadvlei/assets/sass/
PURPOSE: Main SASS entry; loads variables, then partials. Uses @use (modern Sass), not @import.
CREATED: 2026-02-14
MODIFIED: 2026-02-14
VERSION: 1
NOTES: Compile to assets/css/style.css. Dart Sass 3.0 will remove @import.
*/
/*
FILE: _variables-colors.scss
FOLDER: wp-content/themes/skilpadvlei/assets/sass/
PURPOSE: Color variables (theme palette). Import first so other partials can use them.
CREATED: 2026-02-14
MODIFIED: 2026-02-14
VERSION: 1
NOTES:
*/
/*
FILE: _normalize.scss
FOLDER: wp-content/themes/skilpadvlei/assets/sass/
PURPOSE: Normalise/reset base styles for consistent cross-browser rendering.
CREATED: 2026-02-14
MODIFIED: 2026-02-14
VERSION: 1
NOTES: style.scss imports this as 'normalize'.
*/
/* Normalise — add minimal resets if needed; parent Storefront already includes normalize */
/*
FILE: _style-general.scss
FOLDER: wp-content/themes/skilpadvlei/assets/sass/
PURPOSE: General/layout and section structure styles.
CREATED: 2026-02-14
MODIFIED: 2026-02-14
VERSION: 1
NOTES: style.scss imports as 'general'.
*/
/* Section structure — .section, .section-wrapper, .section-container, .section-content, .section-header, .section-body, .section-footer */
.edit-link {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Cormorant Infant", Georgia, "Times New Roman", serif;
}

h2 + h3, .beta + h3 {
  border-width: 0 !important;
  padding-top: 0 !important;
}

.screen-full {
  position: relative;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  text-align: center;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.page .entry-header {
  display: none;
}

.content-area, .site-main, .hentry {
  margin-bottom: 0 !important;
}

a:focus,
a:active,
button:focus,
button:active,
.button:focus,
.button:active,
input:focus,
select:focus,
textarea:focus {
  outline: none !important;
  box-shadow: none !important;
}

/*
FILE: _style-format-grid.scss
FOLDER: wp-content/themes/skilpadvlei/assets/sass/
PURPOSE: Grid layout and styling.
CREATED: 2026-02-17
MODIFIED: 2026-02-17
VERSION: 1
NOTES: style.scss imports as 'style-format-grid'.
*/
/* ============================== */
/* STYLE ALPHA GRID         */
/* ============================== */
.grid {
  display: grid;
  grid-gap: 2em;
}

/* Mobile-first defaults: 1 column for all generic column grids. */
.grid-cols-1,
.grid-cols-2,
.grid-cols-3,
.grid-cols-4,
.grid-cols-5,
.grid-cols-8 {
  grid-template-columns: 1fr;
}

/* Card grids: override inline grid-template-columns on smaller screens. */
@media (max-width: 767px) {
  .grid.grid-card {
    grid-template-columns: 1fr !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .grid.grid-card {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 767px) {
  .sections-chapter .grid[data-layout*=" "] {
    grid-template-columns: 1fr !important;
  }
  .sections-chapter .grid[data-layout*=" "] .box-img {
    order: 1;
  }
  .sections-chapter .grid[data-layout*=" "] .box-txt {
    order: 2;
  }
}
.grid .box.flex {
  display: flex;
  flex-flow: column;
  justify-content: center;
  text-align: center;
}

.grid-150 {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.grid-250 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-350 {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.grid-auto {
  grid-template-columns: auto 1fr;
}

/* === Conditional Dynamic Grid === */
/* === https://chat.openai.com/c/25fa5a79-92c9-4f4e-9bc1-cd70c9bb376c === */
@media (min-width: 768px) {
  .grid-11 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-11r {
    grid-template-columns: 1fr 1fr;
  }
  .grid-111 {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .grid-1111 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .grid-12 {
    grid-template-columns: 1fr 2fr;
  }
  .grid-21 {
    grid-template-columns: 2fr 1fr;
  }
  .grid-13 {
    grid-template-columns: 1fr 3fr;
  }
  .grid-31 {
    grid-template-columns: 3fr 1fr;
  }
  .grid-23 {
    grid-template-columns: 2fr 3fr;
  }
  .grid-32 {
    grid-template-columns: 3fr 2fr;
  }
  .grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-cols-8,
  .grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid-cols-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
/*
FILE: _style-format-ruby.scss
FOLDER: wp-content/themes/skilpadvlei/assets/sass/
PURPOSE: Ruby effect styling.
CREATED: 2026-02-17
MODIFIED: 2026-02-17
VERSION: 1
NOTES: style.scss imports as 'style-format-ruby'.
*/
figure.effect-ruby {
  position: relative;
  overflow: hidden;
}

figure.effect-ruby img {
  width: 100%;
  display: block;
  transition: transform 0.35s ease;
  transform: scale(1.1);
}

figure.effect-ruby:hover img {
  transform: scale(1);
}

figure.effect-ruby figcaption {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  box-sizing: border-box;
}

figure.effect-ruby figcaption:hover {
  background: rgba(0, 0, 0, 0.6);
}

.caption-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

/* Only <h2> visible at first */
.caption-content h2 {
  font-size: 1.4em;
  font-weight: 300;
  color: #fff;
  margin: 0;
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.caption-content span {
  color: #fff;
  position: relative;
  z-index: 1;
  padding: 0;
  background: none;
  margin-bottom: 0 !important;
  font-size: 15px;
  font-style: italic;
  font-weight: 300;
  transform: translateY(0);
  transition: transform 0.4s ease;
}

/* hide p and a at first */
.caption-content p,
.caption-content a {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  color: #fff;
  margin: 0.5rem 0 0;
  display: none;
}

/* on hover — show everything */
figure.effect-ruby:hover .caption-content h2 {
  transform: translateY(-20px);
}

figure.effect-ruby:hover .caption-content span {
  transform: translateY(-10px);
}

figure.effect-ruby:hover .caption-content p,
figure.effect-ruby:hover .caption-content a {
  opacity: 1;
  transform: translateY(0);
}

figure.effect-ruby:hover .caption-content p,
figure.effect-ruby:hover .caption-content a {
  display: inline-block;
}

/* button styles */
.caption-content a {
  background: transparent;
  border: 1px solid #fff;
  padding: 0.4em 1em;
  font-size: 0.8em;
  text-decoration: none;
}

/*
FILE: style.scss
FOLDER: wp-content/themes/skilpadvlei/assets/sass/
PURPOSE: Main SASS entry; loads variables, then partials. Uses @use (modern Sass), not @import.
CREATED: 2026-02-14
MODIFIED: 2026-02-14
VERSION: 1
NOTES: Compile to assets/css/style.css. Dart Sass 3.0 will remove @import.
*/
/*
FILE: _style-format-button.scss
FOLDER: wp-content/themes/skilpadvlei/assets/sass/
PURPOSE: Button styling.
CREATED: 2026-02-17
MODIFIED: 2026-02-17
VERSION: 1
NOTES: style.scss imports as 'style-format-button'.
*/
button.alt,
button,
input[type=button],
input[type=reset],
input[type=submit],
.button,
.widget a.button {
  background-color: transparent;
  color: #000000;
  border: 1px solid #000000;
  transition: 0.5s;
}

button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover,
.button:hover,
.widget a.button:hover {
  background-color: transparent;
  border: 1px solid #000000;
  color: #000000;
}

.btn-sml {
  font-weight: 400;
  padding: 0.2em 0.5em !important;
}

body .gform_wrapper .gform_footer input.button,
body .gform_wrapper .gform_footer input[type=submit] {
  color: #ffffff;
  padding: 4px 10px;
  border: 1px solid #ffffff !important;
  border-radius: 3px;
  box-shadow: 0 1px 0px rgba(114, 114, 114, 0.3);
  background: rgba(0, 0, 0, 0.4) !important;
  /* Vendor prefixes for older browsers */
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-box-shadow: 0 1px 0px rgba(114, 114, 114, 0.3);
  -webkit-box-shadow: 0 1px 0px rgba(114, 114, 114, 0.3);
}

body .gform_wrapper .gform_footer input[type=submit]:hover {
  background-color: #000000 !important;
}

/*
FILE: style.scss
FOLDER: wp-content/themes/skilpadvlei/assets/sass/
PURPOSE: Main SASS entry; loads variables, then partials. Uses @use (modern Sass), not @import.
CREATED: 2026-02-14
MODIFIED: 2026-02-14
VERSION: 1
NOTES: Compile to assets/css/style.css. Dart Sass 3.0 will remove @import.
*/
/*
FILE: _style-format-button.scss
FOLDER: wp-content/themes/skilpadvlei/assets/sass/
PURPOSE: Button styling.
CREATED: 2026-02-17
MODIFIED: 2026-02-17
VERSION: 1
NOTES: style.scss imports as 'style-format-button'.
*/
input {
  background: transparent !important;
}

@media (min-width: 768px) {
  .storefront-breadcrumb {
    padding: 0;
    margin: 0;
  }
}
/*
FILE: style.scss
FOLDER: wp-content/themes/skilpadvlei/assets/sass/
PURPOSE: Main SASS entry; loads variables, then partials. Uses @use (modern Sass), not @import.
CREATED: 2026-02-14
MODIFIED: 2026-02-14
VERSION: 1
NOTES: Compile to assets/css/style.css. Dart Sass 3.0 will remove @import.
*/
/*
// FILE: _style-layout-header-center.scss
// FOLDER: wp-content/themes/skilpadvlei/assets/sass/
// PURPOSE: Header layout — logo center (~240px). Top-Left + Main-Left | logo | Top-Right + Main-Right (no primary/secondary = no Storefront nav CSS).
// NOTES: Use with _function-layout-header-center.php. Flexbox; left/right columns equal width.
// SCOPE: Only target layout/nav — use "nav .menu" (not ".menu") under .header-center-* so .site-header-cart
//        and .widget_shopping_cart are not affected. Cart styles live in _style-product-cart.scss / _style-product-minicart.scss.
*/
.site-header {
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0 !important;
  border-bottom: 0;
  background-color: transparent;
}

.site-header .col-full .header-center {
  width: 100%;
  box-sizing: border-box;
}

.site-header .col-full {
  position: relative;
}

.header-center-wrapper.active {
  visibility: visible;
  opacity: 1;
  top: 0;
  transition: top 1.5s ease-in-out, opacity 1.5s linear;
}

.header-center {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}

.header-center-left,
.header-center-right {
  flex: 1 1 0%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1em;
  padding-top: 0.6em;
}

.header-center-left {
  align-items: flex-start;
  text-align: left;
}

.header-center-right {
  align-items: flex-end;
  text-align: right;
}

.header-center-right-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  gap: 0.5em;
}

.header-center-branding {
  flex: 0 0 auto;
  width: 210px;
  max-width: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5em 0.5em;
}

.header-center-branding .site-branding {
  width: 100% !important;
  max-width: 100%;
  margin: 0 !important;
  padding: 0.5em 0;
  text-align: center;
}

.header-center-left nav,
.header-center-right nav {
  margin: 0;
}

.header-center-left nav .menu,
.header-center-right nav .menu {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0 0.5em;
}

.header-center-left nav .menu li,
.header-center-right nav .menu li {
  margin: 0;
}

.header-center-left nav .menu a,
.header-center-right nav .menu a {
  padding: 0.5em 0.4em;
  text-decoration: none;
}

.header-center-top-left-menu,
.header-center-top-right-menu {
  font-size: 0.8em;
}

@media (min-width: 768px) and (max-width: 959px) {
  .header-center-main-left-menu,
  .header-center-main-right-menu {
    font-size: 0.8em;
  }
  .header-center-main-left-menu a,
  .header-center-main-right-menu a {
    padding: 0.5em 0.2em !important;
  }
}
.header-center-main {
  text-transform: uppercase;
}

.header-center-mobile-nav {
  display: none;
}

.site-branding img {
  max-width: 200px !important;
}

@media (max-width: 767px) {
  .header-center {
    justify-content: center;
  }
  .header-center-left,
  .header-center-right {
    display: none;
  }
  .header-center-branding {
    width: 180px;
    max-width: 180px;
    margin: 0 auto;
  }
  .header-center-mobile-nav {
    display: block;
    position: absolute;
    top: 0.5em;
    right: 0.2em;
    margin-top: 0;
    z-index: 20;
    left: 0.2em;
  }
  .header-center-mobile-nav .menu-toggle {
    margin: 0;
    padding: 0.25em 0.35em;
    min-width: auto;
    min-height: auto;
    text-align: center;
  }
  #site-navigation-menu-toggle,
  .button.menu-toggle, button.menu-toggle:hover {
    color: #000000 !important;
  }
  .header-center-mobile-nav.toggled .handheld-navigation {
    background: #000;
    padding: 0;
  }
  #menu-mobile {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 1.5em;
         column-gap: 1.5em;
    row-gap: 0.2em;
  }
  #menu-mobile::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%; /* center between the two columns */
    width: 1px;
    background-color: rgba(255, 255, 255, 0.3); /* adjust color/alpha */
    transform: translateX(-0.5px); /* keep it crisp */
    pointer-events: none;
  }
  #menu-mobile li {
    list-style: none;
  }
  #menu-mobile li a {
    display: block;
    padding: 0.25em 0 0.25em 0.5em;
  }
  .header-center-mobile-nav.toggled {
    background: #000;
    margin: -1em -100em 0;
    padding: 1em 99em;
    left: 0;
  }
}
/*
FILE: style.scss
FOLDER: wp-content/themes/skilpadvlei/assets/sass/
PURPOSE: Main SASS entry; loads variables, then partials. Uses @use (modern Sass), not @import.
CREATED: 2026-02-14
MODIFIED: 2026-02-14
VERSION: 1
NOTES: Compile to assets/css/style.css. Dart Sass 3.0 will remove @import.
*/
body.header-scroll .module-masthead,
body.header-sticky .module-masthead,
body.header-delay .module-masthead {
  margin-top: calc(-1 * var(--masthead-pull-up, 0px));
}

.module-masthead.masthead-height-default .hero-wrapper {
  height: 420px;
  min-height: 420px;
}

.module-masthead {
  position: relative;
}

.module-masthead::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  pointer-events: none;
  z-index: 3;
}

/* Hide masthead seam while popup overlay is visible. */
body.tsum-popup-open .module-masthead::after {
  display: none !important;
}

.module-masthead .hero-background .hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.module-masthead .hero-background .hero-img img,
.module-masthead .hero-background_image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.module-masthead .hero-overlay-full {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2; /* above .hero-background (1), below .hero-content (3) */
  pointer-events: none;
}

.module-masthead .hero-logo-bg {
  position: relative;
  width: auto;
  height: auto;
  margin: 0 auto 1.5em auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.module-masthead .hero-inner {
  z-index: 2; /* above background/overlay */
  padding: 3em 1em 2em 1em;
}

.module-masthead .hero-logo-bg-image {
  max-height: 200px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  padding-bottom: 0;
}

.module-masthead .hero-content {
  max-width: 580px !important;
  align-items: center;
}
.module-masthead h1 {
  margin-bottom: 0.1em !important;
}
.module-masthead h2 {
  margin-bottom: 0.1em !important;
  font-size: 1.1em !important;
  text-transform: uppercase !important;
  letter-spacing: 0.2em !important;
  border-bottom: 2px solid currentColor;
  padding-bottom: 0.5em;
}
.module-masthead .item-feet .button {
  border-color: currentColor;
}

.module-masthead.masthead-height-full .scroll-down .scroll {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 32px;
  color: currentColor;
  cursor: pointer;
  animation: masthead-scroll-pulse 1.5s infinite;
  z-index: 4;
}
.module-masthead.masthead-height-full .scroll-down .scroll-down-arrow {
  display: inline-block;
  font-size: 32px;
  text-decoration: none;
  color: inherit;
  text-align: center;
  transition: transform 0.2s ease, color 0.2s ease;
}
.module-masthead.masthead-height-full .scroll-down .scroll-down-arrow:hover {
  transform: translateY(5px);
}
.module-masthead.masthead-height-full .scroll-down a {
  color: #fff !important;
}

@keyframes masthead-scroll-pulse {
  0% {
    opacity: 0.6;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(10px);
  }
  100% {
    opacity: 0.6;
    transform: translateY(0);
  }
}
/* == _style-layout-minicart.scss == */
.cart-contents .woocommerce-Price-amount,
.cart-contents .count {
  display: none !important;
}

.cart-contents {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  color: #000 !important;
}

.cart-contents,
.cart-contents *,
.site-header-cart,
.site-header-cart * {
  color: #000 !important;
}

.cart-contents svg,
.cart-contents svg *,
.site-header-cart svg,
.site-header-cart svg * {
  fill: #000 !important;
  stroke: #000 !important;
}

.widget_shopping_cart,
.widget_shopping_cart * {
  color: #000 !important;
}

.widget_shopping_cart svg,
.widget_shopping_cart svg * {
  fill: #000 !important;
  stroke: #000 !important;
}

.widget_shopping_cart {
  background: #ccc !important;
  color: #000000 !important;
  border: 1px solid #ccc;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.widget_shopping_cart .product_list_widget li a.remove {
  color: transparent !important;
}
.widget_shopping_cart .buttons,
.widget_shopping_cart .total {
  background-color: transparent !important;
}
.widget_shopping_cart .buttons .button {
  background-color: #ffffff !important;
  border-width: 0 !important;
  color: #000 !important;
}
.widget_shopping_cart .buttons .button:hover {
  background-color: #eee !important;
  color: #000 !important;
}
.widget_shopping_cart .buttons .button:focus,
.widget_shopping_cart .buttons .button:active {
  color: #000 !important;
}

.header-center-top-right-menu .menu-item-cart {
  position: relative;
}

.header-center-top-right-menu .menu-item-cart .widget_shopping_cart {
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 9999;
  display: none;
  min-width: 280px;
}

.header-center-top-right-menu .menu-item-cart:hover .widget_shopping_cart {
  display: block;
}

.header-center-top-right-menu .menu-item-cart .widget_shopping_cart {
  position: absolute;
  right: 0;
  left: auto;
  min-width: 280px;
  display: none;
  z-index: 9999;
}

.header-center-top-right-menu .menu-item-cart:hover .widget_shopping_cart {
  display: block;
}

.header-center-top-right-menu .menu-item-cart > a,
.header-center-top-right-menu .menu-item-cart > a *,
.header-center-top-right-menu .menu-item-cart .widget_shopping_cart,
.header-center-top-right-menu .menu-item-cart .widget_shopping_cart *,
.header-center-top-right-menu .menu-item-cart .widget_shopping_cart a,
.header-center-top-right-menu .menu-item-cart .widget_shopping_cart .quantity,
.header-center-top-right-menu .menu-item-cart .widget_shopping_cart .amount,
.header-center-top-right-menu .menu-item-cart .widget_shopping_cart .woocommerce-Price-amount,
.header-center-top-right-menu .menu-item-cart .widget_shopping_cart .total,
.header-center-top-right-menu .menu-item-cart .widget_shopping_cart .total strong,
.header-center-top-right-menu .menu-item-cart .widget_shopping_cart .product_list_widget li,
.header-center-top-right-menu .menu-item-cart .widget_shopping_cart .product_list_widget li a:not(.remove),
.header-center-top-right-menu .menu-item-cart .widget_shopping_cart .woocommerce-mini-cart__empty-message {
  color: #000 !important;
}

.header-center-top-right-menu .menu-item-cart .widget_shopping_cart a.remove::before,
.header-center-top-right-menu .menu-item-cart .widget_shopping_cart a.remove::after {
  color: #000 !important;
}

.header-center-top-right-menu .menu-item-cart .widget_shopping_cart .buttons a.button,
.header-center-top-right-menu .menu-item-cart .widget_shopping_cart .buttons a.button.wc-forward,
.header-center-top-right-menu .menu-item-cart .widget_shopping_cart .buttons a.checkout,
.header-center-top-right-menu .menu-item-cart .widget_shopping_cart .buttons a.checkout.wc-forward,
.header-center-top-right-menu .menu-item-cart .widget_shopping_cart .buttons a:not(.remove) {
  color: #000 !important;
  -webkit-text-fill-color: #000 !important;
}

.header-center-top-right-menu .menu-item-cart .widget_shopping_cart .buttons a.button::after,
.header-center-top-right-menu .menu-item-cart .widget_shopping_cart .buttons a.button.wc-forward::after,
.header-center-top-right-menu .menu-item-cart .widget_shopping_cart .buttons a.checkout::after,
.header-center-top-right-menu .menu-item-cart .widget_shopping_cart .buttons a.checkout.wc-forward::after {
  color: #000 !important;
}

.header-center-right-top .site-header-cart {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
}

.woocommerce-cart .header-center-top-right-menu .menu-item-cart .widget_shopping_cart,
.woocommerce-checkout .header-center-top-right-menu .menu-item-cart .widget_shopping_cart {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.header-delay .site-header {
  width: 100%;
  z-index: 1000;
  position: fixed;
  top: -200px;
  visibility: hidden;
  opacity: 0;
  transition: top 1.5s ease-in-out, opacity 1.5s linear, visibility 0s 1.5s;
  border-bottom: 0;
}

.header-delay .site-header .storefront-primary-navigation .col-full {
  margin-bottom: 0.2em;
}

.header-wrapper.active .site-header {
  visibility: visible;
  opacity: 1;
  top: 0;
  transition: top 1.5s ease-in-out, opacity 1.5s linear;
}

.header-sticky .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

.header-scroll .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: none;
}

/*
FILE: style.scss
FOLDER: wp-content/themes/skilpadvlei/assets/sass/
PURPOSE: Main SASS entry; loads variables, then partials. Uses @use (modern Sass), not @import.
CREATED: 2026-02-14
MODIFIED: 2026-02-14
VERSION: 1
NOTES: Compile to assets/css/style.css. Dart Sass 3.0 will remove @import.
*/
/*
FILE: _style-layout-footer.scss
FOLDER: wp-content/themes/skilpadvlei/assets/sass/
PURPOSE: Footer layout and styling. Top edge = same silhouette as masthead but inverted (white cut-out blends with page).
CREATED: 2026-02-14
MODIFIED: 2026-02-14
VERSION: 1
NOTES: Like masthead silhouette at bottom; here a white band at top with hills cut out (sky = white, hills = transparent).
*/
/* Contact page: map as background behind footer content. */
/* Footer: optional background image; white band at top with silhouette cut-out (inverse of masthead). */
.site-footer {
  --footer-bg-image: none;
  --footer-mask-svg: url('../img/skilpadvlei-landscape-silhouette-mask.svg');
  --footer-band-height: 120px; /* default height of white cut-out band */
  position: relative;
  background-color: var(--footer-bg-color, transparent);
  /* Layer 1: image, Layer 2: dark overlay rgba(0,0,0,0.5) so image is darker */
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), var(--footer-bg-image);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  padding: 1.5em 0 0 0;
  /* White band at top: sits above footer bg; mask = sky white, hills transparent (cut-out). Inline style sets mask URL. */
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
  min-height: var(--footer-band-height);
  height: 40%;
  background-color: #fff;
  -webkit-mask-image: var(--footer-mask-svg);
  mask-image: var(--footer-mask-svg);
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-mode: luminance;
  mask-mode: luminance;
  pointer-events: none;
  z-index: 1; /* above footer background so cut-out reveals it */
  min-width: 800px;
}
.site-footer {
  /* Content starts below the white cut-out band (single source of truth). */
}
.site-footer .col-full {
  position: relative;
  z-index: 2; /* above white band */
  padding-top: calc(var(--footer-band-height) * 0.6);
}

/* === _style-layout-footer.scss === */
.site-footer * {
  text-decoration: none !important;
  color: #fff !important;
}
.site-footer .section-container {
  padding: 1em 0;
}
.site-footer .gform_heading {
  display: none;
}
.site-footer .footer-widgets {
  padding-top: 0; /* offset from white band is via .col-full padding-top (--footer-band-height) */
}
.site-footer .site-info {
  padding: 0.617924em 0;
}
.site-footer .widget .widget-title, .site-footer .widget .widgettitle {
  font-size: 1.41575em;
  letter-spacing: 0;
  border-bottom: 1px solid #ffffff;
  padding: 0 0 0.2em;
  margin-bottom: 0.2em;
  font-weight: 300;
  color: #ffffff;
}
.site-footer .footer-widgets a {
  text-decoration: none;
}
.site-footer .widget_nav_menu ul li {
  padding-left: 0;
  margin-bottom: 0.5em;
}
.site-footer .widget_nav_menu ul li::before {
  display: none;
}
.site-footer .gform_widget .gform_wrapper {
  margin-top: 1.5em;
}
.site-footer .flex {
  display: flex;
}
.site-footer .grid-footer-contact .icon {
  width: 30px;
}
.site-footer .footer-bar .box.copy {
  color: #000;
  font-size: 0.95em;
}
.site-footer .footer-bar .box.credit a {
  font-size: 0.95em;
  color: #000;
}
.site-footer .grid-footer-logos {
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 340px;
  margin: 0 auto;
}
.site-footer .grid-footer-logos img {
  max-width: 75px;
}
@media (min-width: 768px) {
  .site-footer .footer-bar .grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .site-footer .footer-bar .box.copy {
    text-align: left;
  }
  .site-footer .footer-bar .box.credit {
    text-align: right;
  }
}

/*
FILE: style.scss
FOLDER: wp-content/themes/skilpadvlei/assets/sass/
PURPOSE: Main SASS entry; loads variables, then partials. Uses @use (modern Sass), not @import.
CREATED: 2026-02-14
MODIFIED: 2026-02-14
VERSION: 1
NOTES: Compile to assets/css/style.css. Dart Sass 3.0 will remove @import.
*/
.module-masthead.has-frame .hero-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
  height: 40%;
  background-image: url("../img/skilpadvlei-landscape-silhouette.svg");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  filter: brightness(0) invert(1);
  pointer-events: none;
  z-index: 0; /* above .hero-overlay (-1), below .hero-inner (1) */
  min-width: 800px;
}

.hero-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Ensure hero is behind content */
}

.hero-background_image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.hero-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2; /* Above the hero but allows interaction with content */
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
  z-index: 3;
}

.hero-inner {
  position: relative;
  z-index: 1; /* above silhouette ::after (0) so text stays on top */
  padding: 1em;
}

.hero-inner img {
  max-width: 100%;
}

.module-masthead .item-feet.twobuttons {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.module-masthead .item-feet.twobuttons .aligned,
.module-masthead .item-feet.twobuttons .scroll.aligned {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  justify-content: center;
}

.module-masthead .item-feet.twobuttons .aligned a,
.module-masthead .item-feet.twobuttons .scroll.aligned a {
  width: 100%;
  box-sizing: border-box;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* == _style-template_global.scss == */
.sections .section-wrapper {
  position: relative;
  overflow: hidden;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 3em 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.sections .section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-color: transparent;
}
.sections .section-overlay.overlay-none {
  display: none !important;
}
.sections .section-overlay.overlay-auto-bg:not(.overlay-text) {
  background-color: rgba(0, 0, 0, 0.8) !important;
}
body.theme-mono-light .sections .section-overlay.overlay-auto-bg:not(.overlay-text) {
  background-color: rgba(255, 255, 255, 0.8) !important;
}
body.theme-mono-dark .sections .section-overlay.overlay-auto-bg:not(.overlay-text) {
  background-color: rgba(0, 0, 0, 0.8) !important;
}
@supports (background-color: color-mix(in srgb, black 80%, transparent)) {
  .sections .section-overlay.overlay-auto-bg:not(.overlay-text) {
    background-color: color-mix(in srgb, var(--tsu-bg) 80%, transparent) !important;
  }
}
.sections .section-overlay.overlay-text.overlay-auto-bg {
  display: none !important;
}
.sections .section-wrapper.has-overlay-text .section-content.content-text,
.sections .section-wrapper:has(.overlay-text.overlay-auto-bg) .section-content.content-text {
  position: relative;
  padding: 2em !important;
  display: block;
  box-sizing: border-box;
}
.sections .section-wrapper.has-overlay-text .section-content.content-text::before,
.sections .section-wrapper:has(.overlay-text.overlay-auto-bg) .section-content.content-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.8) !important;
}
body.theme-mono-light .sections .section-wrapper.has-overlay-text .section-content.content-text::before,
body.theme-mono-light .sections .section-wrapper:has(.overlay-text.overlay-auto-bg) .section-content.content-text::before {
  background-color: rgba(255, 255, 255, 0.8) !important;
}
body.theme-mono-dark .sections .section-wrapper.has-overlay-text .section-content.content-text::before,
body.theme-mono-dark .sections .section-wrapper:has(.overlay-text.overlay-auto-bg) .section-content.content-text::before {
  background-color: rgba(0, 0, 0, 0.8) !important;
}
@supports (background-color: color-mix(in srgb, black 80%, transparent)) {
  .sections .section-wrapper.has-overlay-text .section-content.content-text::before,
  .sections .section-wrapper:has(.overlay-text.overlay-auto-bg) .section-content.content-text::before {
    background-color: color-mix(in srgb, var(--tsu-bg) 80%, transparent) !important;
  }
}
.sections .section-wrapper.has-overlay-text .section-content.content-text > *,
.sections .section-wrapper:has(.overlay-text.overlay-auto-bg) .section-content.content-text > * {
  position: relative;
  z-index: 1;
}
.sections .section-container {
  max-width: 66.4989378333em;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2.617924em;
  box-sizing: content-box;
  position: relative;
  z-index: 2; /* above .section-overlay (1) so content is visible */
}
.sections .section-content .button {
  display: inline-block;
}
.sections .section-content .center {
  text-align: center;
}
.sections .section-content .description {
  margin-top: 0.5em;
}
.sections .section-content .description:not(:empty) {
  margin-bottom: 1em;
}
.sections .section-content .section-intro:not(:empty) {
  margin-bottom: 1em;
}
.sections .section-content .item-footnote:not(:empty) {
  margin-bottom: 1em;
}
.sections .section-content ul, .sections .section-content ol {
  margin: 0 0 1.41575em 1em !important;
}
.sections .section-content .box-img img {
  width: 100%;
}
.sections .section-content .embed-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.sections .section-content .embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.sections:nth-child(odd) .section-wrapper {
  background-color: var(--tsu-bg);
  color: var(--tsu-text);
}
.sections:nth-child(odd) .section-wrapper .post-item {
  background-color: var(--tsu-surface);
}

.sections:nth-child(even) .section-wrapper {
  background-color: var(--tsu-surface);
  color: var(--tsu-text);
}
.sections:nth-child(even) .section-wrapper .post-item {
  background-color: var(--tsu-bg);
}

/* == _style-template_toggle.scss == */
/* == TOGGLE & QUESTION (shared structure) == */
.section-toggle .section-body,
.section-question .section-body {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 10px;
  align-items: start; /* Prevent items from stretching to match tallest item in row */
}
.section-toggle .section-body.toggle-columns-1,
.section-question .section-body.toggle-columns-1 {
  grid-template-columns: 1fr;
}
.section-toggle .section-body.toggle-columns-2,
.section-question .section-body.toggle-columns-2 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .section-toggle .section-body.toggle-columns-2,
  .section-question .section-body.toggle-columns-2 {
    grid-template-columns: 1fr 1fr;
  }
}
.section-toggle .toggle-item,
.section-question .toggle-item {
  border: 1px;
  border-style: solid;
  margin-bottom: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.section-toggle .toggle-title,
.section-question .toggle-title {
  margin: 0px;
  padding: 0px 0px 5px 0px;
  display: inline-block;
  cursor: pointer;
  display: table;
}
.section-toggle .btn.toggle-title,
.section-question .btn.toggle-title {
  margin: 0px;
  padding: 10px 30px;
  display: block;
  cursor: pointer;
  display: block;
}
.section-toggle .toggle-label,
.section-question .toggle-label {
  margin-bottom: 5px;
  display: table-cell;
  width: 100%;
}
.section-toggle .toggle-description,
.section-question .toggle-description {
  height: 0px;
  overflow: hidden;
  padding: 0px;
  margin: 0px;
}
.section-toggle .toggle-icon,
.section-question .toggle-icon {
  display: table-cell;
  line-height: inherit;
  padding-left: 15px;
  vertical-align: middle;
}
.section-toggle .toggle-icon::before,
.section-question .toggle-icon::before {
  padding: 0 0.5em;
}

/*
FILE: style.scss
FOLDER: wp-content/themes/skilpadvlei/assets/sass/
PURPOSE: Main SASS entry; loads variables, then partials. Uses @use (modern Sass), not @import.
CREATED: 2026-02-14
MODIFIED: 2026-02-14
VERSION: 1
NOTES: Compile to assets/css/style.css. Dart Sass 3.0 will remove @import.
*/
/* == _style-template_button.scss == */
/* Button variants driven by ACF:
 * - button_style: fill | outline
 * - button_mode:  dark | light
 * - button_size:  large | small
 *
 * Classes are built in template-parts/comp/button.php:
 * .button.button-{mode}.button-{style}.button-{size}
 */
.sections .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6em 1.6em;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border-width: 1px;
  border-style: solid;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.15s ease;
}
.sections .button-large {
  font-size: 1em;
  padding: 0.7em 1.8em;
}
.sections .button-small {
  font-size: 0.85em;
  padding: 0.45em 1.2em;
}
.sections .button-dark.button-fill {
  background-color: #ccc;
  color: #000000;
  border-color: #000000;
}
.sections .button-dark.button-fill:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: #000000;
}
.sections .button-dark.button-outline {
  background-color: transparent;
  color: #000000;
  border-color: #000000;
}
.sections .button-dark.button-outline:hover {
  background-color: #ccc;
  color: #000000;
}
.sections .button-light.button-fill {
  background-color: #ffffff;
  color: #000000;
  border-color: #000000;
}
.sections .button-light.button-fill:hover {
  background-color: #ccc;
  color: #000000;
  border-color: #000000;
}
.sections .button-light.button-outline {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
.sections .button-light.button-outline:hover {
  background-color: #ffffff;
  color: #000000;
}

/* Hero module: section-head-image sits behind text (like masthead .hero-logo-bg). */
.sections-hero .section-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sections-hero .section-head-image {
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.sections-hero .section-head-image.section-head-image--absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.sections-hero .section-head-image.section-head-image--relative {
  position: relative;
  margin-bottom: 1.5em;
  z-index: 0;
}
.sections-hero .section-head-image-img {
  max-height: 150px;
  max-width: 100%;
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.sections-hero .section-overlay {
  z-index: 0;
}
.sections-hero .section-header,
.sections-hero .toggle-buttons {
  position: relative;
  z-index: 1;
}
.sections-hero .section-header:not(:empty) {
  margin-top: 2em;
}
.sections-hero .section-wrapper:hover {
  background-blend-mode: normal !important;
}
.sections-hero .section-wrapper.has-overlay-text .section-content.content-text {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

/* == _style-template-review.scss == */
.sections-review .review-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.sections-review .review-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
  position: relative;
  z-index: 1;
}
.sections-review .review-slide {
  flex: 0 0 50%;
  width: 50%;
  box-sizing: border-box;
  padding: 1em;
}
.sections-review .grid-review {
  display: grid;
  gap: 1em;
}
.sections-review .review-wrapper {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  height: 100%;
  box-sizing: border-box;
}
.sections-review .review-wrapper .box,
.sections-review .review-wrapper h1,
.sections-review .review-wrapper h2,
.sections-review .review-wrapper h3,
.sections-review .review-wrapper h4,
.sections-review .review-wrapper h5 {
  text-align: left !important;
}
.sections-review .review-wrapper .review-rating {
  justify-content: flex-start !important;
}
.sections-review .review-wrapper .img_wrapper img {
  width: 70px;
  height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.sections-review .review-navs {
  text-align: center;
  position: relative;
  height: 24px;
  margin-top: 20px;
  z-index: 5;
}
.sections-review .review-navs button {
  cursor: pointer;
  background: transparent;
  color: inherit;
  border: 1px solid #666 !important;
  padding: 0 0 0.2em 0;
  width: 20px;
  display: inline-block;
  height: 20px;
  line-height: 0;
  border-radius: 0;
  outline: none;
  box-shadow: none;
}
.sections-review .review-navs button:hover,
.sections-review .review-navs button:focus,
.sections-review .review-navs button:active {
  background: transparent;
  color: inherit;
  border: 1px solid #666 !important;
  outline: none;
  box-shadow: none;
}
.sections-review .review-rating {
  font-size: 20px;
  color: #fbbc05;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  line-height: 1;
}
.sections-review .review-rating .google-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  margin-left: 6px;
  margin-right: 6px;
}
.sections-review .review-rating-star {
  position: static !important;
  display: inline-block !important;
  float: none !important;
  overflow: visible !important;
  top: auto !important;
  left: auto !important;
  padding-top: 0 !important;
  color: #9e9e9e !important;
  font-family: inherit;
  line-height: 1;
}
.sections-review .review-rating-star-full {
  color: #fbbc05 !important;
}
.sections-review .review-rating-star-empty {
  color: #9e9e9e !important;
}
@media (max-width: 768px) {
  .sections-review .review-slide {
    flex: 0 0 100%;
    width: 100%;
  }
}

/* == _style-product-archive.scss == */
.post-type-archive-product .woocommerce-products-header {
  display: none;
}
.post-type-archive-product .wine-footer-notice {
  text-align: center;
  font-style: italic;
}
.post-type-archive-product .wine-footer-notice p {
  margin-bottom: 0;
}
.post-type-archive-product .wine-price-bottle {
  font-weight: 300;
  font-size: 0.9em;
}
.post-type-archive-product .wine-price-case {
  font-weight: 600;
  font-size: 1.1em;
  margin-bottom: 0.5em;
}
.post-type-archive-product ul.products li.product {
  border: 1px solid #ccc;
  margin-bottom: 3em;
}
.post-type-archive-product ul.products li.product img {
  margin: 0.5em auto 1.618em;
  width: 100%;
  max-width: 200px;
}
.post-type-archive-product ul.products li.product .woocommerce-loop-product__title {
  padding: 0 0.5em;
}
.post-type-archive-product ul.products li.product .custom-product-description {
  margin-bottom: 0.5em;
  padding: 0 0.5em;
}
.post-type-archive-product ul.products li.product .added_to_cart {
  border: 1px solid #000;
}
.post-type-archive-product ul.products li.product .added_to_cart,
.post-type-archive-product ul.products li.product .add_to_cart_button,
.post-type-archive-product ul.products li.product .read-more-button {
  margin: 0.1em 0.2em 1em !important;
  padding: 0.5em 0.5em !important;
}
.post-type-archive-product {
  /* Product grid: 4 → 2 → 1 columns */
  /* Phones: 1 column */
}
@media (max-width: 599px) {
  .post-type-archive-product .site-main ul.products.columns-4 li.product {
    width: 100% !important;
    float: none;
    margin-right: 0 !important;
  }
}
.post-type-archive-product {
  /* Tablets / small screens: 2 columns */
}
@media (min-width: 600px) and (max-width: 1023px) {
  .post-type-archive-product .site-main ul.products.columns-4 li.product {
    width: 48% !important;
    float: left;
    margin-right: 4% !important;
  }
  .post-type-archive-product {
    /* WooCommerce's .last is based on the server-side columns-4 markup; use nth-child for 2-col layout. */
  }
  .post-type-archive-product .site-main ul.products.columns-4 li.product:nth-child(2n) {
    margin-right: 0 !important;
  }
  .post-type-archive-product .site-main ul.products.columns-4 li.product:nth-child(2n+1) {
    clear: left;
  }
}
.post-type-archive-product {
  /* Desktop and up: 4 columns (original behaviour) */
}
@media (min-width: 1024px) {
  .post-type-archive-product .site-main ul.products.columns-4 li.product {
    width: 22.25% !important;
    float: left;
    margin-right: 2.75% !important;
  }
  .post-type-archive-product .site-main ul.products.columns-4 li.product.last {
    margin-right: 0 !important;
  }
}

/* == _style-product-single.scss == */
.single-product .woocommerce-product-gallery__trigger {
  display: none !important;
}
.single-product .site-main,
.single-product .content-area {
  margin-bottom: 0;
  margin-top: 1em;
}
.single-product .product_title.entry-title {
  font-size: 1.8em;
}
.single-product .product p.price {
  margin: 0.1em 0 0.3em !important;
}
.single-product .quantity input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
}
.single-product .quantity input[type=number]::-webkit-inner-spin-button,
.single-product .quantity input[type=number]::-webkit-outer-spin-button {
  opacity: 1 !important;
  -webkit-appearance: inner-spin-button;
  margin: 0;
}
.single-product .quantity input[type=number]::-moz-inner-spin-button {
  opacity: 1 !important;
}
.single-product .quantity {
  border: 1px solid #000;
  /* Avoid the quantity wrapper overlapping the Add to cart button */
  margin-right: 0.875em !important;
  padding-right: 0;
}
.single-product .sold-individually .quantity {
  border: none !important;
  padding-right: 0 !important; /* optional cleanup */
}
.single-product .quantity input[type=number] {
  padding: 0.6180469716em;
  background-color: transparent;
  color: #43454b;
  border: 0;
  -webkit-appearance: none;
  box-sizing: border-box;
  font-weight: 400;
  box-shadow: none;
}
.single-product .cart {
  margin-bottom: 0 !important;
}
.single-product .wine-footer-notice {
  font-style: italic;
}
.single-product .wine-footer-notice p {
  margin-bottom: 0;
}
.single-product .tasting-notes {
  margin: 1.5em 0 1.5em 0;
}
.single-product .single_add_to_cart_button {
  border: 1px solid #000;
  position: relative;
  z-index: 5;
}
.single-product .quantity input[type=number]:hover,
.single-product .quantity input[type=number]:focus {
  background-color: white !important;
}
.single-product .quantity input[type=number]::-webkit-inner-spin-button {
  filter: grayscale(1) brightness(1.2);
}
.single-product .quantity input[type=number]:focus {
  outline: none;
  box-shadow: none;
}
.single-product .quantity .bottle-label {
  padding-right: 0.5em;
}
.single-product .product {
  overflow: visible !important;
  position: relative;
  z-index: 2;
}
.single-product .related.products {
  position: relative;
  z-index: 1;
  padding: 2em 0 0 0;
}
.single-product .related.products::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  z-index: -1;
  border-top: 1px solid #f1f1f1;
}
.single-product .related.products .product {
  background-color: #fff;
  border: 1px solid #ccc;
}
.single-product .wine-price-info {
  margin-bottom: 1em;
  padding: 0 0.5em;
}
.single-product .add_to_cart_button,
.single-product .read-more-button {
  margin: 0.1em 0.3em 1em !important;
  padding: 0.5 1em !important;
}
.single-product .wine-price-bottle {
  font-weight: 300;
  font-size: 0.9em;
}
.single-product .wine-price-case {
  font-weight: 600;
  font-size: 1.1em;
  margin-bottom: 0.5em;
}
.single-product .wine-product-details {
  display: inline-block;
}
.single-product .wine-product-details .toggle-item {
  margin-bottom: 0;
}
.single-product .wine-product-details .toggle-description {
  height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.single-product .wine-product-details .toggle-title.button {
  display: table;
  margin: 0 0 1em;
  text-align: left;
}
.single-product .wine-product-details .toggle-label {
  vertical-align: middle;
}
.single-product .wine-product-details .toggle-icon {
  font-weight: 300 !important;
}
.single-product .wine-product-details .toggle-icon::before {
  padding: 0 0.5em;
  font-weight: 300 !important;
}
.single-product .wine-product-details .wine-detail-block {
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: 1px solid #eee;
}
.single-product .wine-product-details .wine-detail-block h3 {
  margin-bottom: 0;
}
.single-product .wine-product-details .wine-detail-block .wine-detail-body {
  margin-top: 0;
}
.single-product .wine-product-details .wine-product-analytics h3 {
  margin-bottom: 0;
}
.single-product .wine-product-details .wine-product-analytics p {
  margin-bottom: 0 !important;
}

/*
FILE: style.scss
FOLDER: wp-content/themes/skilpadvlei/assets/sass/
PURPOSE: Main SASS entry; loads variables, then partials. Uses @use (modern Sass), not @import.
CREATED: 2026-02-14
MODIFIED: 2026-02-14
VERSION: 1
NOTES: Compile to assets/css/style.css. Dart Sass 3.0 will remove @import.
*/
/* === _style-page-contact.scss === */
section.section-contact.section-contact-address {
  margin-bottom: 1.5em;
}
section.section-contact.section-contact-address .contact-address-block {
  display: table;
}
section.section-contact.section-contact-address .contact-address-block .contact-address-icon {
  display: table-cell;
  vertical-align: top;
  padding-right: 0.5em;
  min-width: 25px;
  padding-top: 0.3em;
}
section.section-contact.section-contact-address .contact-address-block .contact-address-lines {
  display: table-cell;
  vertical-align: top;
}

section.section-contact.section-contact-form .section-wrapper {
  margin-bottom: 2em;
}

section.section-contact.section-contact-map {
  line-height: 0;
}
section.section-contact.section-contact-map .section-wrapper {
  position: relative;
  overflow: hidden;
}
section.section-contact.section-contact-map .section-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
  height: 40%;
  background-color: #fff;
  -webkit-mask-image: url("../img/skilpadvlei-landscape-silhouette-mask.svg");
  mask-image: url("../img/skilpadvlei-landscape-silhouette-mask.svg");
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-mode: luminance;
  mask-mode: luminance;
  pointer-events: none;
  z-index: 1;
  min-width: 800px;
}
section.section-contact.section-contact-map iframe {
  margin-top: -80px;
}

.page-contact .site-footer::before {
  display: none !important;
}

.page-contact .site-footer .col-full {
  padding-top: 0.5em !important;
}

.grid-contact i {
  min-width: 25px;
}

.grid-contact i:before {
  color: #000000;
}

.page-about .content-area,
.page-about .site-main,
.page-about .hentry,
.page-contact .content-area,
.page-contact .site-main,
.page-contact .hentry {
  margin-bottom: 0;
}

.zone-header.section-wrapper .title {
  margin-bottom: 0;
  color: #fff;
}
.zone-header.section-wrapper .subtitle {
  margin-bottom: 0;
  color: #fff;
}
.zone-header.section-wrapper .overview {
  margin-bottom: 0;
  color: #fff;
}

/* Contact grid responsiveness: 4 → 2 → 1 columns */
@media (min-width: 768px) and (max-width: 1023px) {
  .grid.grid-1111.grid-contact {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .grid.grid-1111.grid-contact {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}/*# sourceMappingURL=style.css.map */