/** Shopify CDN: Minification failed

Line 1228:37 Expected ":"

**/
/* ===================================
   WEBFONTS
   =================================== */
@font-face {
  font-family: "Catalogue";
  src: url("CatalogueLLWeb-Light.woff2") format("woff2"),
       url("CatalogueLLWeb-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Catalogue";
  src: url("CatalogueLLWeb-LightItalic.woff2") format("woff2"),
       url("CatalogueLLWeb-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: "AT Realm";
  src: url("ATRealmv0.7-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "AT Realm";
  src: url("ATRealmv0.7-RegularItalic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "AT Realm";
  src: url("ATRealmv0.7-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "AT Realm";
  src: url("ATRealmv0.7-BoldItalic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
}

/* ===================================
   CSS RESET & BASE STYLES
   =================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-background: #F5F1E8;
  --color-text: #000000;
  --color-rust: #A35A3B;
  --color-accent: #A35A3B;
  --color-khaki: #E5DBC8;
  --color-caramel: #DBB181;
  --color-blue: #7781A4;
  --color-green: #8d8e5f;
  
  --font-heading: 'Catalogue','Playfair Display', serif;
  --font-body: 'AT Realm', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --header-height: 80px;
  --header-height-shrunk: 50px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* a:hover {
  text-decoration: underline;
} */

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

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

@media (max-width: 768px) {
  .page-width {
    padding: 0 20px;
  }
}

/* ===================================
   HEADER STYLES
   =================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--color-background);
  z-index: 1000;
  height: var(--header-height);
}

.site-header.shrink {
  height: var(--header-height-shrunk);
}

.header-nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  padding-top: 20px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  transition: all 0.3s ease;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100vh;
  background-color: var(--color-background);
  z-index: 1100;
  transition: left 0.3s ease, box-shadow 0.3s ease;
  box-shadow: none;
}

.mobile-menu.active {
  left: 0;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
}

.mobile-menu-header {
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: flex-end;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 36px;
  cursor: pointer;
  color: var(--color-text);
  line-height: 1;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.mobile-menu-nav a {
  padding: 15px 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu-nav a:last-child {
  border-bottom: none;
}

.mobile-menu-search {
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu-search form {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-text);
  background: var(--color-background);
  padding: 8px 12px;
}

.mobile-menu-search input[type="search"] {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  padding: 0;
  outline: none;
}

.mobile-menu-search input[type="search"]::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.mobile-menu-search button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===================================
   SEARCH MODAL
   =================================== */
.search-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--color-background);
  width: 90%;
  max-width: 600px;
  padding: 40px;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  will-change: transform, opacity;
}

.search-modal.active {
  opacity: 1;
  visibility: visible;
}

.search-modal-content {
  position: relative;
}

.search-modal-close {
  display: none;
}

.search-modal-form {
  display: flex;
  align-items: center;
  border: 2px solid var(--color-text);
  background: var(--color-background);
  padding: 15px 20px;
}

.search-modal-form input[type="search"] {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 18px;
  padding: 0;
  outline: none;
}

.search-modal-form input[type="search"]::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.search-modal-form button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  margin-left: 15px;
}

.search-modal-form button:hover {
  opacity: 0.7;
}

.search-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1150;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.header-nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  padding-top: 20px;
}

.header-left,
.header-right {
  display: flex;
  gap: 30px;
  font-size: 14px;
  letter-spacing: 0.5px;
  flex: 1;
  align-items: flex-start;
  font-weight: 700;
}

.header-left a,
.header-right a {
  display: block;
  line-height: 1;
}

.header-left {
  justify-content: flex-start;
}

.header-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-shrink: 0;
  min-width: 291px;
}

.header-right {
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

/* Inline Search Bar (Large Desktop Only - 1200px+) */
.header-search-inline {
  position: absolute;
  right: 49px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  overflow: hidden;
  opacity: 0;
  transition: width 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 1200px) {
  .header-search-inline {
    display: none;
  }
}

.header-search-inline.active {
  width: 250px;
  opacity: 1;
}

.header-search-form {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-text);
  background: var(--color-background);
  padding: 8px 12px;
  white-space: nowrap;
}

.header-search-form input[type="search"] {
  width: 200px;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  padding: 0;
  outline: none;
}

.header-search-form input[type="search"]::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.header-search-form button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  margin-left: 10px;
  flex-shrink: 0;
}

.header-search-form button:hover {
  opacity: 0.7;
}

.search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  line-height: 1;
}

.search-toggle:hover {
  opacity: 0.7;
}

.cart-icon {
  display: none;
}

.cart-icon-wrapper {
  display: none;
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: var(--color-accent);
  color: white;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.header-center .logo {
  display: block;
  height: 60px;
  width: auto;
  margin-top: -11px;
}

.header-center .logo img {
  height: 100%;
  width: auto;
  display: block;
}

.site-header.shrink .header-center .logo {
  height: 32px;
}

/* Mobile header sizing */
@media (max-width: 768px) {
  /* Hide inline search on mobile, use modal instead */
  .header-search-inline {
    display: none;
  }
  
  .site-header {
    height: 64px;
  }
  
  .header-center .logo {
    height: 44px;
    width: auto;
    margin-top: -7px;
  }
  
  .header-center .logo img {
    width: auto;
    max-width: none;
  }
  
  .antiques-header-section .antiques-title {
    height: 80px;
    padding-top: 0.67em;
  }
}

/* Hamburger menu for small mobile */
@media (max-width: 580px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .search-toggle {
    display: none;
  }
  
  .header-left {
    display: none;
  }
  
  .header-right {
    gap: 20px;
  }
  
  .header-nav {
    padding: 20px 20px 0;
    position: relative;
  }
  
  .header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    flex: 0 0 auto;
  }
  
  .cart-link .cart-text {
    display: none;
  }
  
  .cart-link .cart-icon-wrapper {
    display: block;
  }
  
  .cart-link .cart-icon {
    display: block;
    height: 24px;
    width: auto;
    max-width: none;
    object-fit: contain;
  }
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  height: calc(100vh - var(--header-height));
  max-height: 800px;
  z-index: 1;
  padding: 30px 20px 50px;
  display: flex;
  flex-direction: column;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
  flex: 1;
  min-height: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  display: flex;
  min-height: 0;
  overflow: hidden;
}

.hero-image img,
.placeholder-image {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
  border: 3px solid #000000;
  /* border-radius: 50%; */
}

.hero-content {
  padding: 0px 20px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%;
}

.hero-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0;
  text-align: left;
}

/* Call to Action Styles */
.cta,
.hero-cta,
.featured-collection-link a,
.footer-newsletter h3 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: var(--color-text);
  transition: opacity 0.2s ease;
}

.cta:hover,
.hero-cta:hover,
.featured-collection-link a:hover {
  opacity: 0.6;
}

.hero-title em {
  font-style: italic;
}

/* Responsive hero title for short viewports */
@media (min-width: 580px) and (max-width: 768px) and (max-height: 600px) {
  .hero-title {
    font-size: clamp(18px, 5vh, 32px)!important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) and (max-height: 900px) {
  .hero-title {
    font-size: clamp(32px, 5.5vh, 42px);
  }
}

@media (min-width: 1024px) and (max-height: 900px) {
  .hero-title {
    font-size: clamp(36px, 6vh, 48px);
  }
}

/* ===================================
   ANTIQUES SECTION
   =================================== */
.antiques-section {
  background-color: var(--color-rust);
  position: relative;
  z-index: 100;
  margin-top: calc(var(--header-height) + min(800px, calc(100vh - var(--header-height))));
}

.antiques-header-section {
  padding: 0px 20px 20px;
}

.antiques-header-section.is-stuck {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s ease;
}

body.header-shrunk .antiques-header-section.is-stuck {
  top: 50px;
}

.antiques-header-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.antiques-title {
  height: 94px;
  width: auto;
  display: block;
  margin: 0 auto;
  padding-top: 15px;
}

/* ===================================
   MADE SECTION - COMMENTED OUT
   =================================== */
.made-section {
  background-color: var(--color-caramel);
  position: relative;
  z-index: 101;
}

.made-header-part {
  padding: 0px 20px 20px;
}

.made-header-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.made-title {
  height: 75px;
  width: auto;
  display: block;
  margin: 0 auto;
  padding-top: 15px;
}

.made-content-part {
  padding: 0;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.made-content-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.made-coming-soon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.made-coming-soon p {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--color-text);
}


/* ===================================
   CURATED COLLECTIONS SECTION
   =================================== */
.curated-collections-section {
  background-color: var(--color-blue);
  padding: 40px 20px;
  position: relative;
  z-index: 101;
}

.curated-collections-container {
  max-width: 1400px;
  margin: 0 auto;
}

.curated-collections-title {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--color-text);
}

.curated-collections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.curated-collection-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

@media (min-width: 990px) {
  .curated-collection-card:hover {
    opacity: 0.6;
  }
}

.curated-collection-image {
  width: 100%;
  margin-bottom: 20px;
  border: 3px solid #000000;
  overflow: hidden;
}

.curated-collection-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.curated-collection-name {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 15px;
  color: var(--color-text);
}

.curated-collection-description {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
}

.curated-collections-link {
  text-align: center;
}

/* ===================================
   FEATURED COLLECTION
   =================================== */
.featured-collection {
  background-color: var(--color-rust);
  padding: 0 20px 40px;
  position: relative;
  z-index: 100;
}

.featured-collection-container {
  max-width: 1400px;
  margin: 0 auto;
}

.featured-collection-link {
  text-align: center;
  margin-top: 40px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-card {
  background: transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card a {
  opacity: 1 !important;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 20px;
  height: 100%;
  align-items: start;
}

.product-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  margin-bottom: 0;
  background: transparent;
  position: relative;
  overflow: hidden;
  align-self: start;
}

/* Black border for featured collection on home page only */
.featured-collection .product-image {
  border: 3px solid #000000;
}

/* Featured collection: show only 4 products on desktop */
.featured-collection .product-grid .product-card:nth-child(n+5) {
  display: none;
}

.product-image img,
.placeholder-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product image hover effect - Dawn style */
.product-image {
  position: relative;
  overflow: hidden;
}

.product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.product-image img:first-child {
  opacity: 1;
  z-index: 2;
}

.product-image img + img {
  opacity: 1;
  z-index: 1;
}


@media screen and (min-width: 990px) {
  .product-image img:only-child {
    transition: transform 0.6s ease;
  }
  
  .product-card:hover .product-image img:first-child:not(:only-child) {
    opacity: 0;
    transition: opacity 0.2s ease;
  }
  
  .product-card:hover .product-image img + img {
    transition: transform 0.6s ease;
    transform: scale(1.03);
  }
  
  .product-card:hover .product-image img:first-child:only-child {
    transform: scale(1.03);
  }
}

.product-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}

.product-price {
  font-size: 14px;
  font-weight: 500;
}

.sold-out-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  z-index: 3;
}

/* ===================================
   ABOUT PAGE SECTIONS
   =================================== */
.about-founder-section {
  margin-top: var(--header-height);
  background-color: var(--color-caramel);
  padding: 60px 20px;
}

.about-approach-section {
  background-color: var(--color-accent);
  padding: 60px 20px;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.about-image {
  width: 100%;
}

.about-image img,
.about-image .placeholder-image {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 3px solid #000000;
}

.about-founder-section .about-image img {
  border-radius: 50%;
}

.about-content {
  padding: 0px 20px 20px;
}

.about-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 30px;
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
}

.about-text p {
  margin-bottom: 20px;
}

/* ===================================
   MAIN PRODUCT PAGE
   =================================== */
.main-product {
  margin-top: var(--header-height);
  background-color: var(--color-khaki);
  padding: 60px 60px 80px;
}

.product-container {
  max-width: 1400px;
  margin: 0 auto;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.product-images {
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.product-media-gallery {
  margin-bottom: 20px;
}

.product-media-main {
  margin-bottom: 20px;
  border: 2px solid var(--color-text);
  background: var(--color-background);
  position: relative;
  transition: aspect-ratio 0.3s ease;
  overflow: hidden;
}

.product-media-main.video-active {
  aspect-ratio: 9 / 16;
}

.product-media-main.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7);
  z-index: 10;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.product-media-main img,
.product-media-main .deferred-media {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.main-product-image,
.deferred-media {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
}

.main-product-image {
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.main-product-image.zoomed {
  cursor: move;
  transform: scale(2);
  transform-origin: center center;
}

.main-product-image.zoomable:hover {
  opacity: 0.95;
}

.deferred-media {
  position: relative;
  overflow: hidden;
}

.deferred-media-button {
  width: 100%;
  height: 100%;
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  position: relative;
  display: block;
}

.deferred-media-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.deferred-media-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);\n  width: 64px;
  height: 64px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.deferred-media-button:hover .deferred-media-play-icon {
  background: rgba(0, 0, 0, 0.9);
}

.deferred-media iframe,
.deferred-media video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  object-fit: cover;
}

.deferred-media.loaded iframe,
.deferred-media.loaded video {
  display: block;
}

.deferred-media.loaded .deferred-media-button {
  display: none;
}

.product-thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 10px;
  max-height: 400px;
  overflow-y: auto;
}

.product-thumbnail {
  position: relative;
  aspect-ratio: 3 / 4;
  border: 2px solid transparent;
  background: none;
  padding: 0;
  cursor: pointer;
  transition: border-color 0.2s;
  overflow: hidden;
}

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

.product-thumbnail:hover {
  border-color: var(--color-text);
}

.product-thumbnail.active {
  border-color: var(--color-accent);
}

.thumbnail-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.thumbnail-play-icon svg {
  width: 16px;
  height: 16px;
}

.product-info {
  padding: 0 0 20px 0;
}

.product-page-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 20px;
}

.product-page-price {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}

.product-description {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.product-form {
  margin-top: 40px;
}

.quantity-selector {
  margin-bottom: 20px;
}

.quantity-selector label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  display: block;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0;
  width: fit-content;
  border: 2px solid var(--color-text);
}

.quantity-btn {
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: none;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.quantity-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.quantity-btn:active {
  background-color: rgba(0, 0, 0, 0.1);
}

.quantity-input {
  width: 60px;
  height: 40px;
  border: none;
  border-left: 2px solid var(--color-text);
  border-right: 2px solid var(--color-text);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  background-color: transparent;
  -moz-appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.add-to-cart-btn {
  background-color: var(--color-text);
  color: var(--color-background);
  border: 2px solid var(--color-text);
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.add-to-cart-btn:hover:not(:disabled) {
  background-color: transparent;
  color: var(--color-text);
}

.add-to-cart-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ===================================
   RELATED PRODUCTS
   =================================== */
.related-products {
  background-color: var(--color-accent);
  padding: 80px 20px;
}

.related-container {
  max-width: 1400px;
  margin: 0 auto;
}

.related-container h3 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 60px;
}

.loading-recommendations {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-recommendations::after {
  content: 'Loading recommendations...';
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
}

/* ===================================
   MAIN COLLECTION PAGE
   =================================== */
.collection-categories {
  margin-top: var(--header-height);
  background-color: #E5DBC8;
  padding: 40px 20px 0px;
}

.collection-categories-container {
  max-width: 1400px;
  margin: 0 auto;
}

.collection-categories-title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 30px;
  text-align: center;
}

.category-carousel-wrapper {
  position: relative;
  max-width: 100%;
}

.carousel-nav {
  font-family: var(--font-body);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(229, 219, 200, 0.8);
  color: black;
  border: none;
  width: 80px;
  height: 100%;
  /* border-radius: 50%;
  border: 2px solid var(--color-text); */
  font-size: 90px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-nav:hover {
  color: var(--color-accent);
}

.carousel-prev {
  left: -20px;
}

.carousel-next {
  right: -20px;
}

.category-carousel {
  overflow: hidden;
  width: 100%;
}

.category-tiles {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.category-tile {
  text-decoration: none;
  color: var(--color-text);
  transition: opacity 0.3s ease;
  flex-shrink: 0;
  display: block;
}

.category-tile:hover {
  opacity: 0.8;
}

.category-tile-image {
  width: 200px;
  margin-bottom: 15px;
  overflow: visible;
}

.category-tile-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.category-tile-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* Tablet carousel sizing */
@media (max-width: 1024px) {
  .category-tile-image {
    width: 140px;
  }
  
  .category-tile-title {
    font-size: 11px;
    letter-spacing: 0.7px;
  }
  
  .carousel-nav {
    width: 60px;
    font-size: 80px;
  }
  
  .carousel-prev {
    left: -17px;
  }
  
  .carousel-next {
    right: -17px;
  }
}

/* Mobile carousel sizing */
@media (max-width: 768px) {
  .category-tile-image {
    width: 90px;
  }
  
  .category-tile-title {
    font-size: 9px;
    letter-spacing: 0.4px;
  }
  
  .category-tiles {
    gap: 12px;
  }
  
  .carousel-nav {
    width: 50px;
    font-size: 70px;
  }
  
  .carousel-prev {
    left: -20px;
  }
  
  .carousel-next {
    right: -20px;
  }
}

/* ===================================
   CATEGORY PRODUCTS SECTION (AJAX)
   =================================== */
.category-products-section {
  background-color: #E5DBC8;
  padding: 40px 0px 0px;
  margin-top: 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease, margin-top 0.3s ease;
}

.category-products-section.active {
  opacity: 1;
  max-height: 3000px;
  margin-top: 0;
}

.category-products-section {
  border-top: 2px solid #000000;
  padding-top: 30px;
}

.category-loading {
  text-align: center;
  padding: 60px 0;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #e5dbc8;
  border-top-color: #2B2B2B;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

#category-products-grid {
  max-width: 1400px;
  margin: 0 auto;
}

#category-shop-more {
  max-width: 1400px;
  margin: 40px auto 0;
}

.collection-separator {
  width: 100%;
  height: 2px;
  background-color: #000;
  margin-top: 40px;
}

.main-collection {
  background-color: #E5DBC8;
  padding: 0px 20px 80px;
  scroll-margin-top: var(--header-height);
}

.collection-container {
  max-width: 1400px;
  margin: 0 auto;
}

.collection-container h1 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 40px;
  padding-top: 30px;
}

.collection-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .collection-container h1 {
    font-size: 14px;
    letter-spacing: 1px;
  }
  
  .breadcrumb-separator {
    margin: 0 5px;
  }
}

.breadcrumb-link {
  color: var(--color-text);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.breadcrumb-link:hover {
  opacity: 0.6;
  text-decoration: none;
}

.breadcrumb-separator {
  margin: 0 8px;
}

.breadcrumb-current {
  color: var(--color-text);
}

.collection-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  font-size: 14px;
}

.collection-filters {
  display: flex;
  align-items: center;
  gap: 15px;
}

.filter-label,
.sort-label {
  font-weight: 600;
}

.filter-group {
  position: relative;
}

.filter-toggle {
  background: transparent;
  border: 1px solid var(--color-text);
  padding: 8px 16px;
  font-size: 14px;
  color: var(--color-text);
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.filter-toggle:hover {
  opacity: 0.7;
}

.filter-toggle.active {
  background: var(--color-text);
  color: var(--color-background);
}

.filter-count {
  display: none;
}

.filter-toggle.has-selection .filter-count {
  display: inline;
}

.filter-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-background);
  border: 1px solid var(--color-text);
  padding: 16px;
  min-width: 250px;
  z-index: 100;
  margin-top: 4px;
}

.filter-dropdown.active {
  display: block;
}

.filter-dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-text);
}

.filter-selected {
  font-size: 14px;
}

.filter-reset {
  background: transparent;
  border: none;
  text-decoration: underline;
  cursor: pointer;
  font-size: 14px;
  padding: 0;
  font-family: inherit;
}

.filter-reset:hover {
  opacity: 0.7;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  cursor: pointer;
  font-size: 14px;
}

.filter-option:hover {
  opacity: 0.7;
}

.filter-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.option-count {
  color: var(--color-text);
  opacity: 0.7;
}

.collection-sort {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sort-select {
  background: transparent;
  border: none;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}

.sort-select:focus {
  outline: none;
}

.product-count {
  color: var(--color-text);
}

/* ===================================
   PRICE RANGE INPUTS
   =================================== */
.price-range-inputs {
  padding: 12px 0;
  display: flex;
  gap: 12px;
}

.price-input-group {
  flex: 1;
}

.price-input-group label {
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
  color: var(--color-text);
}

.price-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid var(--color-text);
  background: var(--color-background);
}

.price-currency {
  padding: 0 8px;
  font-size: 14px;
  color: var(--color-text);
}

.price-input {
  flex: 1;
  border: none;
  padding: 8px 8px 8px 0;
  font-size: 14px;
  background: transparent;
  font-family: inherit;
  color: var(--color-text);
  min-width: 0;
}

.price-input:focus {
  outline: none;
}

.price-input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

/* ===================================
   ACTIVE FILTERS
   =================================== */
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  align-items: center;
}

.active-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--color-text);
  color: var(--color-background);
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.2s;
}

.active-filter-tag:hover {
  opacity: 0.7;
}

.remove-filter {
  font-size: 18px;
  line-height: 1;
}

.clear-all-filters {
  text-decoration: underline;
  font-size: 14px;
  cursor: pointer;
}

.clear-all-filters:hover {
  opacity: 0.7;
}

/* ===================================
   PRODUCT GRID WRAPPER & LOADING
   =================================== */
.product-grid-wrapper {
  position: relative;
}

.loading-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7);
  z-index: 10;
}

.loading-overlay.active {
  display: block;
}

/* ===================================
   PAGINATION
   =================================== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.pagination-link {
  padding: 8px 12px;
  text-decoration: none;
  color: var(--color-text);
  border: 1px solid var(--color-text);
  transition: all 0.2s;
}

.pagination-link:hover {
  background: var(--color-text);
  color: var(--color-background);
}

.pagination-current {
  background: var(--color-text);
  color: var(--color-background);
  font-weight: 600;
}

.pagination-gap {
  padding: 8px 12px;
}

.pagination-prev,
.pagination-next {
  font-weight: 600;
}

/* ===================================
   COLLECTION PRODUCTS
   =================================== */
.collection-products-section {
  background-color: var(--color-accent);
  padding: 0 60px 80px;
}

.collection-products-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* ===================================
   CATEGORY NAVIGATION
   =================================== */
.category-navigation {
  padding: 40px 20px;
  background-color: #E5DBC8;
  position: relative;
  z-index: 100;
}

.category-container {
  max-width: 1400px;
  margin: 0 auto 50px;
}

.section-title {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 40px;
}

/* .category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
} */

.category-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.category-icon-placeholder {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-icon-placeholder svg {
  width: 100%;
  height: 100%;
}

.category-name {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* .category-navigation .category-container {
  padding-bottom: 50px
} */

/* ===================================
   FOOTER
   =================================== */
.site-footer {
  position: relative;
  /* min-height: 100vh; */
  background-color: var(--color-green);
  /* border-top: 2px solid rgba(0, 0, 0, 1); */
  display: flex;
  flex-direction: column;
  z-index: 100;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 60px 20px 0px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
  min-height: 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-acorn {
  text-align: center;
  margin-bottom: 20px;
}

.footer-acorn img {
  width: 100px;
  height: auto;
  margin: 0 auto;
}

.footer-links-section {
  width: 50%;
  margin: 0 auto 20px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  font-size: 16px;
}

.footer-links-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links-column h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.footer-links a,
.footer-search-toggle {
  text-decoration: none;
  color: var(--color-text);
  transition: opacity 0.2s ease;
  font-size: 16px;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  line-height: 1.5;
}

.footer-links a:hover,
.footer-search-toggle:hover {
  opacity: 0.6;
}

.footer-logo-section {
  width: 50%;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo-section img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-info {
  width: 100%;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--color-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-info {
    position: absolute;
    bottom: 85px;
    left: 0;
    right: 0;
  }
}

.footer-grain {
  width: 100%;
  background-color: var(--color-green);
  background-repeat: repeat-x;
  background-position: top left;
  background-size: auto 85px;
  height: 85px;
  border-top: 2px solid #000000;
}

.footer-info p {
  margin: 0;
}

/* Hide hCaptcha badge */
.h-captcha,
.h-captcha iframe,
[data-hcaptcha-widget-id],
.h-captcha-badge,
.footer-newsletter .h-captcha,
.newsletter-form .h-captcha,
div[style*="hcaptcha"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

.footer-newsletter {
  width: 50%;
  margin: 0 auto 20px;
  text-align: center;
}

.footer-newsletter h3 {
  margin-bottom: 20px;
}

.newsletter-form {
  /* max-width: 500px; */
  margin: 0 auto;
}

.newsletter-input-wrapper {
  display: flex;
  gap: 10px;
}

.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.2);
  font-size: 14px;
  font-family: var(--font-body);
  transition: border-color 0.2s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--color-text);
}

.newsletter-submit {
  padding: 12px 24px;
  background: var(--color-text);
  color: var(--color-background);
  border: none;
  font-size: 14px;
  font-family: var(--font-body);
  cursor: pointer;
  transition: opacity 0.2s ease;
  letter-spacing: 0.5px;
}

.newsletter-submit:hover {
  opacity: 0.8;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-end;
  width: 100%;
  margin-top: auto;
}

.footer-bottom .footer-links {
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-self: flex-end;
}

.footer-logo {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-bottom: 15px;
}

.footer-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Header hide on footer scroll */
.site-header.footer-visible {
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}

.site-header {
  transition: transform 0.4s ease;
}

/* ANTIQUES header hide on footer scroll */
.antiques-header-section.footer-visible {
  transform: translateY(-200%);
  transition: transform 0.4s ease;
}

.antiques-header-section {
  transition: transform 0.4s ease;
}

/* MADE header hide on footer scroll */
.made-header-section.footer-visible {
  transform: translateY(-200%);
  transition: transform 0.4s ease;
}

.made-header-section {
  transition: transform 0.4s ease;
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */
@media (max-width: 768px) {
  .hero-container,
  .about-container {
    grid-template-columns: 1fr;
  }
  
  /* .category-grid {
    grid-template-columns: repeat(3, 1fr);
  } */
  
  .hero-section {
    padding: 20px 20px 0;
  }

  
  .footer-links-section,
  .footer-logo-section {
    width: 60%;
  }
}

@media (max-width: 768px) {
  /* 3 columns on homepage sections */
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* Featured collection: show only 3 products on tablet */
  .featured-collection .product-grid .product-card:nth-child(n+4) {
    display: none;
  }
  
  /* AJAX category products: show 9 products on tablet */
  #category-products-grid .product-card:nth-child(n+10) {
    display: none;
  }
  
  .header-nav {
    padding: 20px 20px 0;
  }
  
  .header-left,
  .header-right {
    gap: 15px;
    font-size: 12px;
  }
  
  .hero-section {
    padding: 20px 20px 20px;
  }
  
  .about-founder-section,
  .about-approach-section {
    padding: 40px 20px;
  }
  
  .hero-title,
  .about-title {
    font-size: 24px;
  }
  
  .hero-description {
    grid-template-columns: 1fr;
  }
  
  .product-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .product-images {
    position: relative;
    top: 0;
  }
  
  /* .category-grid {
    grid-template-columns: repeat(2, 1fr);
  } */
  
  .filter-label,
  .sort-label {
    font-size: 12px;
  }
  
  .filter-toggle {
    font-size: 12px;
    padding: 6px 12px;
  }
  
  .filter-dropdown {
    min-width: calc(100vw - 40px);
    left: 50%;
    transform: translateX(-50%);
  }
  
  .sort-select {
    font-size: 12px;
  }
  
  .product-count {
    white-space: nowrap;
    font-size: 12px;
  }
}

/* Mobile Filter Menu */
.mobile-filter-toggle {
  display: none;
  background: transparent;
  color: var(--color-text);
  border: none;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
  text-decoration: underline;
}

.mobile-filter-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background-color: var(--color-background);
  z-index: 1100;
  transition: left 0.3s ease, box-shadow 0.3s ease;
  box-shadow: none;
  overflow-y: auto;
}

.mobile-filter-menu.active {
  left: 0;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
}

.mobile-filter-header {
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-background);
  position: sticky;
  top: 0;
  z-index: 10;
}

.mobile-filter-header h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.mobile-filter-close {
  background: none;
  border: none;
  font-size: 36px;
  cursor: pointer;
  color: var(--color-text);
  line-height: 1;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-filter-content {
  padding: 20px;
}

.mobile-filter-section {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-filter-section:last-of-type {
  border-bottom: none;
}

.mobile-filter-section h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.mobile-sort-select {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--color-text);
  background: var(--color-background);
  font-size: 14px;
  font-family: var(--font-body);
  cursor: pointer;
}

.mobile-filter-group {
  margin-bottom: 20px;
}

.mobile-filter-label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
}

.mobile-filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  cursor: pointer;
  font-size: 14px;
}

.mobile-filter-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.mobile-price-inputs {
  display: flex;
  gap: 12px;
}

.mobile-price-group {
  flex: 1;
}

.mobile-price-group label {
  display: block;
  font-size: 12px;
  margin-bottom: 6px;
}

.mobile-price-group .price-input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-text);
  background: var(--color-background);
}

.mobile-price-group .price-currency {
  padding: 0 8px;
  font-size: 14px;
  color: var(--color-text);
  flex-shrink: 0;
}

.mobile-price-group input[type="number"] {
  flex: 1;
  border: none;
  padding: 8px 8px 8px 0;
  font-size: 14px;
  background: transparent;
  font-family: inherit;
  color: var(--color-text);
  min-width: 0;
  width: 100%;
}

.mobile-price-group input[type="number"]:focus {
  outline: none;
}

.mobile-price-group input[type="number"]::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.mobile-filter-actions {
  display: flex;
  gap: 10px;
  padding-top: 20px;
  position: sticky;
  bottom: 0;
  background-color: var(--color-background);
  padding: 20px;
  margin: 0 -20px -20px;
  /* border-top: 2px solid rgba(0, 0, 0, 1); */
}

.mobile-filter-reset,
.mobile-filter-apply {
  flex: 1;
  padding: 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
  border: none;
}

.mobile-filter-reset {
  background: transparent;
  border: 1px solid var(--color-text);
  color: var(--color-text);
}

.mobile-filter-apply {
  background: var(--color-text);
  color: var(--color-background);
}

.mobile-filter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-filter-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Extreme mobile layout at 580px */
@media (max-width: 580px) {
  .collection-toolbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .mobile-filter-toggle {
    display: block;
  }
  
  .collection-filters {
    display: none;
  }
  
  .collection-sort {
    display: flex;
    align-items: center;
  }
  
  .collection-sort .sort-label,
  .collection-sort .sort-select {
    display: none;
  }
  
  .collection-sort .product-count {
    display: block;
    font-size: 14px;
  }
  
  /* Mobile: 2 columns for product grid */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Featured collection: show 4 products on mobile (2x2 grid) */
  /* Re-show product 4 that was hidden at tablet breakpoint */
  .featured-collection .product-grid .product-card:nth-child(4) {
    display: flex;
  }
  
  .featured-collection .product-grid .product-card:nth-child(n+5) {
    display: none;
  }

  /* AJAX category products: show 8 products on mobile */
  #category-products-grid .product-card:nth-child(n+9) {
    display: none;
  }
}

/* Cart Page Styles */
.cart-page {
  padding: 120px 0 40px 0;
  background-color: var(--color-khaki);
}

.cart-title {
  font-size: 36px;
  margin-bottom: 30px;
  text-align: center;
}

.cart-items {
  margin-bottom: 40px;
}

.cart-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
}

.cart-item-image {
  flex-shrink: 0;
  width: 150px;
}

.cart-item-image img {
  width: 100%;
  height: auto;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-title {
  font-size: 20px;
  margin-bottom: 5px;
}

.cart-item-variant {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.cart-item-quantity input {
  width: 60px;
  padding: 5px;
  border: 1px solid #ddd;
  text-align: center;
}

.cart-item-static-quantity {
  margin-bottom: 10px;
  font-size: 14px;
}

.cart-item-price {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.cart-item-unit-price {
  font-size: 14px;
  font-weight: normal;
  color: #666;
}

.cart-item-remove {
  color: var(--color-accent);
  text-decoration: underline;
  font-size: 14px;
}

.cart-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-top: 20px;
}

.cart-update-button {
  padding: 15px 30px;
  background-color: #000;
  color: white;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: bold;
  font-size: 16px;
}

.cart-update-button:hover {
  background-color: #555;
}

.cart-summary {
  text-align: right;
  min-width: 300px;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid #000;
}

.cart-note {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.cart-checkout-button {
  width: 100%;
  padding: 15px;
  background-color: var(--color-accent);
  color: white;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 15px;
}

.cart-checkout-button:hover {
  background-color: #a86850;
}

.cart-continue-shopping {
  display: block;
  text-align: center;
  color: #333;
  text-decoration: underline;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
}

.cart-empty p {
  font-size: 20px;
  margin-bottom: 20px;
}

.cart-empty .button {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--color-accent);
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.cart-empty .button:hover {
  background-color: #a86850;
}

@media (max-width: 768px) {
  .cart-item-image {
    width: 100px;
  }
  
  .cart-item-title {
    font-size: 16px;
  }
  
  .cart-item-price {
    font-size: 16px;
  }
  
  .cart-footer {
    flex-direction: column;
  }
  
  .cart-summary {
    width: 100%;
    text-align: left;
  }
}

/* Contact Page Styles */
.contact-page {
  padding: 120px 0 40px 0;
  background-color: var(--color-khaki);
}

.contact-title {
  font-size: 36px;
  margin-bottom: 20px;
  text-align: center;
}

.contact-intro {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.contact-success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 15px;
  margin-bottom: 30px;
  border-radius: 4px;
}

.contact-errors {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
  padding: 15px;
  margin-bottom: 30px;
  border-radius: 4px;
}

.contact-errors ul {
  margin: 10px 0 0 20px;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.required {
  color: var(--color-accent);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  font-family: var(--font-body);
  font-size: 16px;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-field textarea {
  resize: vertical;
}

.contact-submit {
  width: 100%;
  padding: 15px;
  background-color: var(--color-accent);
  color: white;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: bold;
  font-size: 16px;
}

.contact-submit:hover {
  background-color: #a86850;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Search Page Styles */
.main-search {
  padding: 120px 0 80px 0;
  background-color: var(--color-khaki);
  min-height: 60vh;
}

.search-title {
  font-size: 36px;
  margin-bottom: 30px;
  text-align: center;
}

.search-form-wrapper {
  max-width: 600px;
  margin: 0 auto 40px;
}

.search-page-form {
  display: flex;
  align-items: center;
  border: 2px solid var(--color-text);
  background: var(--color-background);
  padding: 12px 20px;
}

.search-page-form input[type="search"] {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 16px;
  padding: 0;
  outline: none;
}

.search-page-form input[type="search"]::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.search-page-form button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  margin-left: 15px;
}

.search-page-form button:hover {
  opacity: 0.7;
}

.search-results-count {
  text-align: center;
  font-size: 18px;
  margin-bottom: 40px;
  font-weight: 600;
}

.search-no-results {
  text-align: center;
  padding: 60px 20px;
}

.search-no-results p {
  font-size: 20px;
  margin-bottom: 20px;
}

.search-suggestions {
  font-size: 16px;
  color: #666;
}

.search-suggestions a {
  color: var(--color-accent);
  text-decoration: underline;
}

.search-empty {
  text-align: center;
  padding: 60px 20px;
  font-size: 18px;
  color: #666;
}

@media (max-width: 768px) {
  .main-search {
    padding: 100px 0 60px 0;
  }
  
  .search-title {
    font-size: 28px;
  }
  
  .search-results-count {
    font-size: 16px;
  }
  
  /* Footer mobile styles */
  .footer-container {
    padding: 60px 20px 20px;
  }
  
  .footer-logo-section {
    width: 100%;
  }
  
  .footer-newsletter,
  .footer-links-section {
    width: 100%;
  }
  
  .footer-links {
    gap: 20px;
    font-size: 14px;
  }
  
  .footer-newsletter h3 {
    font-size: 20px;
  }
  
  .newsletter-input-wrapper {
    flex-direction: column;
  }
  
  .newsletter-submit {
    width: 100%;
  }
}

/* ===================================
   PASSWORD PAGE / COMING SOON
   =================================== */
.password-header {
  background-color: var(--color-background);
  padding: 40px 20px;
  border-bottom: 2px solid var(--color-text);
}

.password-header-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.password-logo {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto;
}

.password-store-name {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 2px;
}

.password-content {
  background-color: var(--color-background);
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.password-container {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.password-title {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.password-message {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 50px;
}

.password-message p {
  margin-bottom: 15px;
}

.password-form-wrapper {
  margin-bottom: 50px;
}

.password-form,
.newsletter-form {
  width: 100%;
}

.password-input-group,
.newsletter-input-group {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.password-input,
.newsletter-input {
  flex: 1;
  padding: 15px 20px;
  font-family: var(--font-body);
  font-size: 16px;
  border: 2px solid var(--color-text);
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--color-text);
}

.password-input:focus,
.newsletter-input:focus {
  outline: none;
  /* border-color: var(--color-caramel); */
}

.password-submit,
.newsletter-submit {
  padding: 15px 40px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  border: 2px solid var(--color-text);
  background-color: var(--color-text);
  color: var(--color-background);
  cursor: pointer;
  transition: all 0.3s ease;
}

.password-submit:hover,
.newsletter-submit:hover {
  background-color: var(--color-rust);
  border-color: var(--color-rust);
}

.password-newsletter {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid var(--color-text);
}

.password-newsletter p {
  font-family: var(--font-body);
  font-size: 16px;
  margin-bottom: 20px;
}

.newsletter-success {
  color: var(--color-rust);
  font-weight: 700;
}

.errors {
  color: var(--color-rust);
  margin-bottom: 20px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .password-title {
    font-size: 42px;
  }
  
  .password-store-name {
    font-size: 36px;
  }
  
  .password-input-group,
  .newsletter-input-group {
    flex-direction: column;
  }
  
  .password-submit,
  .newsletter-submit {
    width: 100%;
  }
}
