/** Shopify CDN: Minification failed

Line 21:18 Expected identifier but found whitespace
Line 21:20 Unexpected "{"
Line 21:30 Expected ":"
Line 22:20 Expected identifier but found whitespace
Line 22:22 Unexpected "{"
Line 22:32 Expected ":"
Line 23:21 Expected identifier but found whitespace
Line 23:23 Unexpected "{"
Line 23:33 Expected ":"
Line 24:15 Expected identifier but found whitespace
... and 2 more hidden warnings

**/
/* ============================================
   SOKS & JOKS - Base Styles
   ============================================ */

:root {
  --color-primary: {{ settings.color_primary }};
  --color-secondary: {{ settings.color_secondary }};
  --color-background: {{ settings.color_background }};
  --color-text: {{ settings.color_text }};
  --color-white: #ffffff;
  --color-gold: #C8962E;
  --color-dark: #1a1a1a;
  --color-cream: #FDF5EC;
  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Open Sans', sans-serif;
  --max-width: 1200px;
  --header-height: 80px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background-color: var(--color-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn--primary {
  background-color: var(--color-gold);
  color: var(--color-white);
}

.btn--primary:hover {
  background-color: #b5852a;
}

.btn--outline {
  background-color: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
}

.btn--outline:hover {
  background-color: var(--color-gold);
  color: var(--color-white);
}

.btn--dark {
  background-color: var(--color-dark);
  color: var(--color-white);
}

.btn--dark:hover {
  background-color: #333;
}

.btn--small {
  padding: 8px 20px;
  font-size: 0.8rem;
}

/* ============================================
   Announcement Bar
   ============================================ */

.announcement-bar {
  background-color: var(--color-gold);
  color: var(--color-white);
  text-align: center;
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ============================================
   Header
   ============================================ */

.site-header {
  background-color: var(--color-dark);
  padding: 0 30px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header__logo img {
  height: 40px;
  width: auto;
}

.site-header__logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-white);
  font-weight: 700;
  letter-spacing: 1px;
}

.site-header__logo-text .ampersand {
  color: var(--color-gold);
  font-style: italic;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-header__nav a {
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.site-header__nav a:hover {
  color: var(--color-gold);
}

.site-header__icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-header__icons a,
.site-header__icons button {
  color: var(--color-white);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.site-header__icons a:hover,
.site-header__icons button:hover {
  color: var(--color-gold);
}

.cart-count {
  background-color: var(--color-gold);
  color: var(--color-white);
  font-size: 0.65rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -8px;
  left: -6px;
}

/* Mobile menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  .site-header__nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background-color: var(--color-dark);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }
  .site-header__nav.is-open {
    display: flex;
  }
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  background-color: var(--color-cream);
  padding: 60px 30px 30px;
  text-align: center;
}

.site-footer__logo {
  margin-bottom: 30px;
}

.site-footer__logo img {
  height: 220px;
  margin: 0 auto;
}

.site-footer__links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.site-footer__links a {
  font-size: 0.85rem;
  color: var(--color-dark);
  transition: color 0.3s ease;
}

.site-footer__links a:hover {
  color: var(--color-gold);
}

.site-footer__social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.site-footer__social a {
  font-size: 1.3rem;
  color: var(--color-dark);
  transition: color 0.3s ease;
}

.site-footer__social a:hover {
  color: var(--color-gold);
}

.site-footer__copyright {
  font-size: 0.75rem;
  color: #999;
}

/* ============================================
   Section Spacing
   ============================================ */

.section {
  padding: 80px 0;
}

.section--no-pad-top {
  padding-top: 0;
}

.section--no-pad-bottom {
  padding-bottom: 0;
}

/* ============================================
   Two Column Layout
   ============================================ */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.two-col--reverse {
  direction: rtl;
}

.two-col--reverse > * {
  direction: ltr;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .two-col--reverse {
    direction: ltr;
  }
}

/* ============================================
   Free Shipping Badge
   ============================================ */

.free-shipping-badge {
  background-color: var(--color-gold);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 8px;
  display: inline-block;
  line-height: 1.3;
  text-align: center;
}

.free-shipping-badge span {
  color: var(--color-white);
  font-weight: 800;
}

/* ============================================
   Utilities
   ============================================ */

.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }
.text-white { color: var(--color-white); }
.italic { font-style: italic; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
