/** Shopify CDN: Minification failed

Line 43:0 All "@import" rules must come first

**/
/* Lokalshop Custom Styles - Afrikaans Pride Brand */

/* ===============================================
   Brand Color Variables
   =============================================== */
:root {
  /* Primary Brand Colors - Lighter, warmer tones */
  --lokalshop-cream: #f8f4eb;
  --lokalshop-cream-dark: #efe9dc;
  --lokalshop-green: #4a5d3e;
  --lokalshop-green-dark: #3d4d33;
  --lokalshop-green-light: #5a6d4e;
  --lokalshop-gold: #a08565;
  --lokalshop-gold-light: #c4a882;
  --lokalshop-brown: #6b5a4a;
  --lokalshop-brown-light: #8a7a6a;
  --lokalshop-wood: #7a5d3a;
  
  /* Text Colors */
  --lokalshop-text-dark: #4a4a4a;
  --lokalshop-text-light: #f8f4eb;
  
  /* Spacing */
  --lokalshop-section-padding: 60px;
  --lokalshop-section-padding-mobile: 40px;
}

/* ===============================================
   Global Styles
   =============================================== */
body {
  background-color: var(--lokalshop-cream) !important;
}

/* ===============================================
   Global Typography
   =============================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Open+Sans:wght@300;400;500;600;700&display=swap');

.lokalshop-script {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
}

.lokalshop-heading {
  font-family: 'Libre Baskerville', Georgia, serif;
}

.lokalshop-body {
  font-family: 'Open Sans', sans-serif;
}

/* ===============================================
   Header Styles
   =============================================== */
.lokalshop-header {
  background-color: var(--lokalshop-cream);
  padding: 15px 0;
  border-bottom: 1px solid var(--lokalshop-cream-dark);
}

.lokalshop-header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lokalshop-logo {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--lokalshop-text-dark);
  text-decoration: none;
  text-transform: uppercase;
}

.lokalshop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.lokalshop-nav__link {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--lokalshop-text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.lokalshop-nav__link:hover {
  color: var(--lokalshop-green);
}

.lokalshop-header__actions {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: var(--lokalshop-text-dark);
}

.lokalshop-header__actions a {
  color: var(--lokalshop-text-dark);
  text-decoration: none;
}

.lokalshop-header__cart {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Dropdown Navigation */
.lokalshop-nav__dropdown {
  position: relative;
}

.lokalshop-nav__link--has-dropdown {
  display: flex;
  align-items: center;
  gap: 4px;
}

.lokalshop-nav__link--has-dropdown svg {
  transition: transform 0.2s ease;
}

.lokalshop-nav__dropdown:hover .lokalshop-nav__link--has-dropdown svg {
  transform: rotate(180deg);
}

.lokalshop-nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--lokalshop-cream);
  min-width: 150px;
  padding: 10px 0;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 100;
}

.lokalshop-nav__dropdown:hover .lokalshop-nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}

.lokalshop-nav__dropdown-link {
  display: block;
  padding: 10px 20px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--lokalshop-text-dark);
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.lokalshop-nav__dropdown-link:hover {
  background-color: var(--lokalshop-cream-dark);
  color: var(--lokalshop-green);
}

/* ===============================================
   Hero Section
   =============================================== */
.lokalshop-hero {
  position: relative;
  width: 100%;
  min-height: 500px;
  overflow: hidden;
}

.lokalshop-hero__image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.lokalshop-hero__content {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 380px;
  text-align: left;
}

.lokalshop-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 52px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -1px;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 0, 0, 0.2);
}

.lokalshop-hero__subtitle {
  font-family: 'Open Sans', sans-serif;
  font-style: normal;
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.5;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
}

.lokalshop-hero__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.95);
  color: #2c4a2c;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lokalshop-hero__button:hover {
  background-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .lokalshop-hero {
    min-height: 350px;
    aspect-ratio: auto;
  }
  
  .lokalshop-hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    object-position: right center;
  }
  
  .lokalshop-hero__content {
    position: absolute;
    top: 50%;
    left: 4%;
    right: auto;
    max-width: 45%;
    text-align: left;
    transform: translateY(-50%);
  }
  
  .lokalshop-hero__title {
    font-size: 22px;
    margin-bottom: 6px;
  }
  
  .lokalshop-hero__subtitle {
    font-size: 11px;
    margin-bottom: 10px;
  }
  
  .lokalshop-hero__button {
    padding: 8px 16px;
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .lokalshop-hero {
    min-height: 280px;
  }
  
  .lokalshop-hero__image {
    min-height: 280px;
    object-position: 85% center;
  }
  
  .lokalshop-hero__content {
    top: 50%;
    left: 3%;
    max-width: 38%;
    transform: translateY(-50%);
  }
  
  .lokalshop-hero__title {
    font-size: 16px;
    margin-bottom: 4px;
  }
  
  .lokalshop-hero__subtitle {
    font-size: 9px;
    margin-bottom: 8px;
    line-height: 1.3;
  }
  
  .lokalshop-hero__button {
    padding: 6px 10px;
    font-size: 8px;
    letter-spacing: 0.5px;
  }
}

/* ===============================================
   Trust Bar Section
   =============================================== */
.lokalshop-trust-bar {
  background-color: var(--lokalshop-cream);
  padding: 25px 0;
  border-bottom: 1px solid var(--lokalshop-cream-dark);
}

.lokalshop-trust-bar__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.lokalshop-trust-bar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: var(--lokalshop-text-dark);
}

.lokalshop-trust-bar__icon {
  width: 24px;
  height: 24px;
  color: var(--lokalshop-green);
}

.lokalshop-trust-bar__divider {
  width: 1px;
  height: 20px;
  background-color: var(--lokalshop-cream-dark);
}

/* ===============================================
   Featured Products Section
   =============================================== */
.lokalshop-featured {
  background-color: var(--lokalshop-cream);
  padding: var(--lokalshop-section-padding) 0;
}

.lokalshop-featured__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.lokalshop-featured__title,
.lokalshop-collections__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 32px;
  font-weight: 500;
  color: var(--lokalshop-text-dark);
  text-align: center;
  margin-bottom: 40px;
}

.lokalshop-featured__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .lokalshop-featured__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .lokalshop-featured__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.lokalshop-product-card {
  text-align: center;
}

.lokalshop-product-card__image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
  background-color: #f0ebe3;
}

.lokalshop-product-card__title {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--lokalshop-text-dark);
  margin-bottom: 4px;
}

.lokalshop-product-card__price {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: var(--lokalshop-brown-light);
}

.lokalshop-featured__button-wrapper {
  text-align: center;
}

.lokalshop-featured__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--lokalshop-green);
  color: var(--lokalshop-cream);
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.lokalshop-featured__button:hover {
  background-color: var(--lokalshop-green-dark);
}

/* ===============================================
   Family Section (Wood Background)
   =============================================== */
.lokalshop-family {
  background: linear-gradient(180deg, #8b7355 0%, #a08565 50%, #7a6350 100%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Crect fill='%238b7355' width='100' height='100'/%3E%3Cg fill-opacity='0.1'%3E%3Crect fill='%23000' x='0' y='0' width='100' height='1'/%3E%3Crect fill='%23000' x='0' y='5' width='100' height='0.5'/%3E%3Crect fill='%23000' x='0' y='10' width='100' height='1'/%3E%3Crect fill='%23000' x='0' y='18' width='100' height='0.5'/%3E%3Crect fill='%23000' x='0' y='25' width='100' height='1'/%3E%3C/g%3E%3C/svg%3E");
  padding: 50px 0;
}

.lokalshop-family__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 768px) {
  .lokalshop-family__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.lokalshop-family__content {
  color: var(--lokalshop-cream);
}

.lokalshop-family__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 10px;
}

.lokalshop-family__subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 20px;
  opacity: 0.9;
}

.lokalshop-family__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--lokalshop-green);
  color: var(--lokalshop-cream);
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border: 1px solid var(--lokalshop-cream);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.lokalshop-family__button:hover {
  background-color: var(--lokalshop-cream);
  color: var(--lokalshop-green);
}

.lokalshop-family__products {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.lokalshop-family__product {
  background: var(--lokalshop-cream);
  border-radius: 8px;
  overflow: hidden;
  max-width: 200px;
}

.lokalshop-family__product img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===============================================
   Newsletter Section
   =============================================== */
.lokalshop-newsletter {
  background-color: var(--lokalshop-cream);
  padding: 50px 0;
}

.lokalshop-newsletter__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.lokalshop-newsletter__content {
  flex: 1;
  min-width: 300px;
}

.lokalshop-newsletter__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 24px;
  font-weight: 500;
  color: var(--lokalshop-text-dark);
  margin-bottom: 8px;
}

.lokalshop-newsletter__subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: var(--lokalshop-brown-light);
}

.lokalshop-newsletter__form {
  display: flex;
  gap: 10px;
  flex: 1;
  max-width: 400px;
}

.lokalshop-newsletter__input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--lokalshop-cream-dark);
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  background-color: white;
}

.lokalshop-newsletter__input::placeholder {
  color: var(--lokalshop-brown-light);
}

.lokalshop-newsletter__button {
  background-color: var(--lokalshop-green);
  color: var(--lokalshop-cream);
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.lokalshop-newsletter__button:hover {
  background-color: var(--lokalshop-green-dark);
}

.lokalshop-newsletter__copyright {
  background-color: #1e3a1e;
  padding: 15px 20px;
  text-align: center;
  margin-top: 30px;
}

.lokalshop-newsletter__copyright p {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 3px 0;
}

/* ===============================================
   Footer Section (overrides for lokalshop-footer)
   Note: lokalshop-footer.liquid has dark green theme
   =============================================== */
.lokalshop-footer-section .lokalshop-footer {
  background-color: #2c4a2c;
  color: #ffffff;
}

.lokalshop-footer__links {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
}

.lokalshop-footer__link {
  color: var(--lokalshop-text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.lokalshop-footer__link:hover {
  color: var(--lokalshop-green);
}

.lokalshop-footer__divider {
  color: var(--lokalshop-cream-dark);
}

/* ===============================================
   Utility Classes
   =============================================== */
.lokalshop-section {
  width: 100%;
}

.lokalshop-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Mobile Navigation Toggle */
.lokalshop-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  color: var(--lokalshop-text-dark);
  z-index: 1001;
}

.lokalshop-header {
  position: relative;
}

@media (max-width: 768px) {
  .lokalshop-header__container {
    flex-wrap: wrap;
  }
  
  .lokalshop-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--lokalshop-cream);
    padding: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    flex-direction: column;
  }
  
  .lokalshop-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    order: 2;
  }
  
  .lokalshop-nav.active {
    display: flex;
  }
  
  .lokalshop-nav__link {
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid var(--lokalshop-cream-dark);
    width: 100%;
    text-align: left;
  }
  
  .lokalshop-nav__dropdown {
    width: 100%;
  }
  
  .lokalshop-nav__link--has-dropdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid var(--lokalshop-cream-dark);
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--lokalshop-text-dark);
  }
  
  .lokalshop-nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: hidden;
    transform: none;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, visibility 0.3s ease;
    background: var(--lokalshop-cream-dark);
  }
  
  .lokalshop-nav__dropdown.open .lokalshop-nav__dropdown-menu {
    visibility: visible;
    max-height: 200px;
  }
  
  .lokalshop-nav__dropdown:hover .lokalshop-nav__dropdown-menu {
    opacity: 1;
    visibility: hidden;
    transform: none;
  }
  
  .lokalshop-nav__dropdown.open .lokalshop-nav__link--has-dropdown svg {
    transform: rotate(180deg);
  }
  
  .lokalshop-nav__dropdown-link {
    padding: 12px 30px;
  }
  
  .lokalshop-header__actions {
    order: 3;
  }
  
  .lokalshop-header__divider {
    display: none;
  }
  
  .lokalshop-header__actions a:first-child {
    display: none;
  }
  
  .lokalshop-hero__title {
    font-size: 32px;
  }
  
  .lokalshop-hero__subtitle {
    font-size: 24px;
  }
  
  .lokalshop-trust-bar__container {
    gap: 30px;
  }
  
  .lokalshop-trust-bar__divider {
    display: none;
  }
}
