:root {
  --font-body: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-brand: "Anton", sans-serif;
  --color-brand: #351e0e;
  --primary: #088413;
  --text-color: #232129;
  --text-color-secondary: #78757a;
  --text-color-inverted: #fff;
  --background: #fff;
  --bg-color: #faf7f2;
  --accent-terracotta: #c97d60;
  --accent-sage: #8b9a5b;
  --accent-honey: #d4a574;
  --accent-sienna: #a0522d;
  --accent-olive: #6b8e5a;
  --color-brand-dark: #2a180b;
  --color-brand-darker: #1f1208;
  --color-footer-bg: #211c1c;
  --color-border: #999;
  --color-border-light: rgba(53, 30, 14, 0.1);
  --color-shadow: rgba(53, 30, 14, 0.2);
  --color-shadow-light: rgba(53, 30, 14, 0.15);
  --color-gray-light: #f5f5f5;
  --max-content-width: 1600px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --space-sm: 4px;
  --space-md: 8px;
  --space-lg: 16px;
  --space-xl: 20px;
  --space-2xl: 24px;
  --space-3xl: 48px;
  --space-4xl: 64px;
  --space-5xl: 80px;
  --section-padding-x: 24px;
  --section-padding-x-md: 48px;
  --section-padding-y: 3rem;
  --section-padding-y-md: 5rem;
  --button-height: 48px;
  --text-xs: 12px;
  --text-sm: 14px;
  --text-md: 16px;
  --text-lg: 18px;
  --text-xl: 20px;
  --text-2xl: 24px;
  --text-3xl: 32px;
  --text-4xl: 46px;
  --parallax-range: 500px;
  --rem-1: 1rem;
  --rem-2: 2rem;
  --rem-3: 3rem;
  --rem-4: 4rem;
  --rem-5: 5rem;
  --rem-6: 6rem;
  --rem-8: 8rem;
  --header-height-mobile: 65px;
  --header-height-desktop: 100px;
  --gap-sm: 1rem;
  --gap-md: 2rem;
  --gap-lg: 3rem;
  --underline-thickness: 3px;
  --underline-thin: 2px;
  --about-max-width: 860px;
  --faq-max-width: 700px;
  --contact-max-width: 700px;
  --rem-1-5: 1.5rem;
  --font-size-22: 22px;
  --font-size-30: 30px;
  --font-size-40: 40px;
  --font-size-50: 50px;
  --about-image-size: 150px;
  --parallax-offset-mobile: 300px;
  --parallax-offset-desktop: 150px;
  --fade-in-offset: 40px;
  --footer-min-height: 150px;
  --icon-size-sm: 32px;
  --icon-size-md: 38px;
  --semibold: 600;
  --bold: 700;
}

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .showcase-item:hover .showcase-item-image img,
  .showcase-item:focus .showcase-item-image img,
  .showcase-item:focus-within .showcase-item-image img {
    transform: none !important;
  }

  .instagram-grid a:hover img,
  .instagram-grid a:focus img {
    transform: none !important;
  }
}

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

/* Global focus ring color */
*:focus-visible {
  outline-color: var(--color-brand);
}

/* Skip Link for Accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--color-brand);
  color: var(--text-color-inverted);
  padding: var(--space-md) var(--space-lg);
  text-decoration: none;
  z-index: 100;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--text-color-inverted);
  outline-offset: 2px;
}

html {
  scroll-padding-top: var(--header-height-mobile);
  scroll-behavior: smooth;
}

@media (min-width: 640px) {
  html {
    scroll-padding-top: var(--header-height-desktop);
  }
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  height: auto;
  max-width: 100%;
}

.logo-img,
.footer-logo {
  border: none;
  border-radius: 0;
}

/* Header/Navigation */
.header-nav {
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: var(--background);
}

.nav-container {
  display: flex;
  align-items: center;
  height: var(--header-height-mobile);
  padding: 12px var(--section-padding-x);
  position: relative;
  max-width: var(--max-content-width);
  margin: 0 auto;
}

@media (min-width: 640px) {
  .nav-container {
    height: var(--header-height-desktop);
    padding: 20px var(--section-padding-x-md);
  }
}

.nav-container::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(rgba(0, 0, 0, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
  pointer-events: none;
}

.logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 100%;
}

@media (min-width: 640px) {
  .logo-link {
    width: 85px;
  }
}

.logo-img {
  width: 100%;
  height: auto;
}

.site-name-wrapper {
  flex: 1 1 0;
}

.site-name {
  color: var(--color-brand);
  font-family: var(--font-brand);
  font-size: var(--text-2xl);
  margin-left: var(--rem-1);
  text-decoration: none;
  display: inline-flex;
}

@media (min-width: 640px) {
  .site-name {
    font-size: var(--text-3xl);
    margin-left: var(--rem-2);
  }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  margin-left: auto;
}

.mobile-menu-toggle:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 2px;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: var(--color-brand);
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
  transform-origin: center;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--gap-sm);
  align-items: center;
  margin-left: auto;
}

@media (min-width: 750px) {
  .nav-menu {
    gap: var(--gap-md);
  }
}

@media (min-width: 900px) {
  .nav-menu {
    gap: var(--gap-lg);
  }
}

/* Mobile Menu Styles */
@media (max-width: 899px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background-color: var(--background);
    margin: 0;
    padding: var(--space-lg) var(--section-padding-x);
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, padding 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .nav-menu[aria-expanded="true"] {
    max-height: 500px;
    opacity: 1;
    padding: var(--space-lg) var(--section-padding-x);
  }

  @media (min-width: 640px) {
    .nav-menu {
      padding: var(--space-lg) var(--section-padding-x-md);
    }

    .nav-menu[aria-expanded="true"] {
      padding: var(--space-lg) var(--section-padding-x-md);
    }
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid var(--color-border-light);
  }

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

  .nav-menu a {
    display: block;
    padding: var(--space-lg) 0;
    width: 100%;
    height: auto;
    text-align: left;
  }

  .nav-link::after {
    display: none;
  }
}

.nav-menu a {
  color: var(--text-color);
  text-decoration: none;
  font-size: var(--text-lg);
  font-weight: 700;
  height: var(--button-height);
  display: flex;
  align-items: center;
}

.nav-menu a:hover {
  color: var(--text-color);
}

.nav-menu a:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Composable underline animation for nav links */
.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: var(--underline-thickness);
  background-color: var(--color-brand);
  transition: width 0.3s ease-in-out;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  width: 100%;
}

/* Composable thin underline animation (2px) */
.link-underline-thin {
  position: relative;
}

.link-underline-thin::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: var(--underline-thin);
  background-color: var(--color-brand);
  transition: width 0.3s ease-in-out;
}

.link-underline-thin:hover::before,
.link-underline-thin:focus-visible::before {
  width: 100%;
}

/* Paragraph links always underlined */
p a {
  text-decoration: underline;
  text-decoration-color: var(--color-brand);
  text-underline-offset: 2px;
}

p a:hover,
p a:focus-visible {
  text-decoration-thickness: 2px;
}

/* Hero Section */
.hero-wrapper {
  margin: 0 auto;
  max-width: var(--max-content-width);
  padding: var(--section-padding-y) var(--section-padding-x);
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
}

@media (min-width: 640px) {
  .hero-wrapper {
    padding: var(--section-padding-y-md) var(--section-padding-x-md);
  }
}

.hero-container {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  align-items: center;
  flex-direction: column-reverse;
}

@media (min-width: 900px) {
  .hero-container {
    flex-direction: row;
    align-items: unset;
  }
}

.hero-left {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-4xl);
  padding: var(--space-3xl) 0 var(--space-3xl);
  position: relative;
  width: 100%;
}

@media (min-width: 600px) {
  .hero-left {
    padding: var(--space-4xl) 0 var(--space-2xl);
  }
}

@media (min-width: 900px) {
  .hero-left {
    padding: var(--space-3xl);
    width: 50%;
    flex-direction: row;
    gap: 0;
  }
}

.hero-intro {
  color: var(--color-brand);
  display: inline-flex;
  flex-direction: column;
  gap: var(--space-md);
  font-family: var(--font-brand);
}

.hero-title {
  font-size: var(--font-size-50);
  line-height: 1;
  margin: 0;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

.hero-description {
  font-size: var(--font-size-30);
  line-height: 1.2;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

@media (min-width: 600px) {
  .hero-title {
    font-size: 60px;
  }
  .hero-description {
    font-size: var(--font-size-30);
  }
}

@media (min-width: 900px) {
  .hero-title {
    font-size: 40px;
  }
  .hero-description {
    font-size: 25px;
  }
}

@media (min-width: 1100px) {
  .hero-title {
    font-size: var(--font-size-50);
  }
  .hero-description {
    font-size: var(--font-size-30);
  }
}

@media (min-width: 1250px) {
  .hero-title {
    font-size: 60px;
  }
  .hero-description {
    font-size: var(--font-size-30);
  }
}

.hero-explore {
  display: block;
  position: relative;
  left: auto;
  bottom: auto;
  font-size: var(--text-xl);
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  color: var(--text-color);
}

.hero-explore:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 8px;
  border-radius: var(--radius-sm);
}

@media (min-width: 900px) {
  .hero-explore {
    position: absolute;
    left: 50%;
    bottom: var(--space-xl);
    transform: translateX(-50%);
  }
}

.hero-explore::before {
  content: '';
  position: absolute;
  bottom: calc(-1 * var(--space-sm));
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--color-brand);
  transition: width 0.3s ease-in-out;
}

.hero-explore:hover::before,
.hero-explore:focus-visible::before {
  width: 100%;
}

.hero-explore::after {
  bottom: calc(-1 * var(--space-2xl));
  content: "↓";
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  transition: transform 0.3s ease-in-out;
}

.hero-explore:hover::after,
.hero-explore:focus-visible::after {
  transform: translateX(-50%) translateY(10px);
}

.hero-right {
  align-items: center;
  display: flex;
  width: 100%;
}

@media (min-width: 900px) {
  .hero-right {
    width: 50%;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 1s ease-in-out;
}

.hero-image {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
}

/* Main Content */
main {
  width: 100%;
}

/* Showcase Section */
.showcase-preview {
  background: var(--background);
  padding-top: var(--section-padding-y);
}

.showcase-preview-content {
  max-width: var(--max-content-width);
  margin: 0 auto;
}

@media (min-width: 640px) {
  .showcase-preview {
    padding-top: var(--section-padding-y-md);
  }
}

.showcase-preview h2 {
  color: var(--color-brand);
  font-family: var(--font-brand);
  font-size: var(--text-4xl);
  padding: 0 var(--section-padding-x) var(--space-3xl);
  text-align: center;
}

@media (min-width: 640px) {
  .showcase-preview h2 {
    padding: 0 var(--section-padding-x-md) var(--space-4xl);
  }
}

.showcase-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
  padding: 0 var(--section-padding-x) var(--space-4xl);
  place-items: center;
  max-width: var(--max-content-width);
  margin: 0 auto;
}

@media (min-width: 640px) {
  .showcase-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    padding: 0 var(--section-padding-x-md) var(--space-4xl);
  }
}

@media (min-width: 1024px) {
  .showcase-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
  }
}

@media (min-width: 1280px) {
  .showcase-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.showcase-item {
  padding-bottom: var(--space-md);
  text-decoration: none;
  cursor: pointer;
  width: 100%;
  color: var(--text-color);
  display: block;
  transition: transform 0.2s;
  border-radius: var(--radius-md);
}

.showcase-item-image {
  margin-bottom: var(--space-lg);
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--color-gray-light);
  border-radius: var(--radius-md);
}

.showcase-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease-in-out;
  border-radius: var(--radius-md);
  will-change: transform;
}

.showcase-item:hover .showcase-item-image img,
.showcase-item:focus .showcase-item-image img,
.showcase-item:focus-within .showcase-item-image img {
  transform: scale(1.075);
}

.showcase-item-details {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-weight: var(--semibold);
  gap: var(--space-sm);
  justify-content: center;
  padding: var(--space-lg) 0 var(--space-2xl);
  text-align: center;
}

.showcase-item-details h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: var(--dense);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  margin: 0;
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}

.showcase-item-details h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-brand);
  transition: width 0.3s ease-in-out;
}

.showcase-item:hover .showcase-item-details h3::after,
.showcase-item:focus .showcase-item-details h3::after,
.showcase-item:focus-within .showcase-item-details h3::after {
  width: 100%;
}

.showcase-item-details .price {
  color: var(--text-color-secondary);
  font-weight: 600;
  margin: 0;
}

.showcase-item h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: var(--space-sm);
}

.showcase-item .price {
  color: var(--text-color-secondary);
  font-weight: 600;
}

.view-all-wrapper {
  text-align: center;
  padding: var(--space-2xl) var(--section-padding-x) var(--space-4xl);
}

@media (min-width: 640px) {
  .view-all-wrapper {
    padding: var(--space-2xl) var(--section-padding-x-md) var(--space-4xl);
  }
}

/* About Section */
.about-wrapper {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: var(--space-5xl) 0;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.about-wrapper::before {
  content: '';
  position: absolute;
  top: calc(var(--parallax-offset-mobile) * -1);
  left: 0;
  right: 0;
  bottom: calc(var(--parallax-offset-mobile) * -1);
  background-image: url("/images/wood-grain-bg.webp");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--bg-color);
  z-index: -1;
  will-change: transform;
  transform: translateY(var(--parallax-y, 0px));
}

@media (min-width: 640px) {
  .about-wrapper {
    padding: var(--space-5xl) 0;
  }

  .about-wrapper::before {
    top: calc(var(--parallax-offset-desktop) * -1);
    bottom: calc(var(--parallax-offset-desktop) * -1);
  }
}

@media (min-width: 1024px) {
  .about-wrapper::before {
    top: calc(var(--parallax-offset-desktop) * -1);
    bottom: calc(var(--parallax-offset-desktop) * -1);
  }
}

.about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 var(--section-padding-x);
  position: relative;
  max-width: var(--max-content-width);
  margin: 0 auto;
  opacity: 0;
  transform: translateY(var(--fade-in-offset));
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.about-container.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .about-container {
    padding: 0 var(--section-padding-x-md);
  }
}

.about-image {
  width: var(--about-image-size);
  margin-bottom: var(--space-xl);
}

.about-image img {
  border: 1px solid var(--color-border-light);
  border-radius: 50%;
  width: 100%;
  height: auto;
}

.about-intro {
  background: var(--background);
  border-bottom: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  max-width: var(--about-max-width);
  padding: var(--rem-4) var(--rem-1-5) var(--rem-2);
  position: relative;
}

@media (min-width: 640px) {
  .about-intro {
    padding: var(--rem-5) var(--rem-2) var(--rem-3);
  }
}

@media (min-width: 750px) {
  .about-intro {
    padding: var(--rem-6) var(--rem-5) var(--rem-4);
  }
}

.about-intro-text {
  color: var(--text-color);
  font-size: var(--text-lg);
  line-height: 1.5;
  padding-bottom: 0;
}

@media (min-width: 640px) {
  .about-intro-text {
    font-size: var(--text-lg);
  }
}

@media (min-width: 750px) {
  .about-intro-text {
    font-size: var(--font-size-22);
  }
}

.first-letter {
  display: inline-block;
  font-size: var(--font-size-30);
  line-height: 1;
  padding-top: var(--space-xl);
}

@media (min-width: 640px) {
  .first-letter {
    font-size: var(--font-size-40);
    padding-top: var(--space-md);
  }
}

@media (min-width: 750px) {
  .first-letter {
    font-size: var(--font-size-50);
    padding-top: 0;
  }
}

/* FAQ Section */
.faq-wrapper {
  background-color: var(--bg-color);
  display: flex;
  justify-content: center;
  padding: var(--rem-5) 0;
}

.faq-container {
  max-width: var(--faq-max-width);
  padding: var(--space-lg) var(--section-padding-x) var(--space-3xl);
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .faq-container {
    padding: var(--space-lg) var(--section-padding-x-md) var(--space-3xl);
  }
}

.faq-title {
  color: var(--color-brand);
  font-family: var(--font-brand);
  font-size: var(--text-3xl);
  padding: 0 0 var(--rem-2);
  margin: 0;
}

@media (min-width: 640px) {
  .faq-title {
    font-size: var(--text-4xl);
  }
}

.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.faq-item {
  list-style: none;
  margin: 0 0 var(--rem-2);
  padding: 0;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-question {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--rem-1);
  margin-top: 0;
}

.faq-answer {
  font-size: var(--text-md);
  line-height: 1.5;
  margin: 0;
}

/* Contact Form */
.contact-wrapper {
  background-color: var(--bg-color);
  display: flex;
  justify-content: center;
  padding: var(--rem-5) 0;
}

.contact-container {
  max-width: var(--contact-max-width);
  padding: var(--space-lg) var(--section-padding-x) var(--space-3xl);
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .contact-container {
    padding: var(--space-lg) var(--section-padding-x-md) var(--space-3xl);
  }
}

.contact-container h1 {
  color: var(--color-brand);
  font-family: var(--font-brand);
  font-size: var(--text-3xl);
  padding: 0 0 var(--rem-2);
}

@media (min-width: 640px) {
  .contact-container h1 {
    font-size: var(--text-4xl);
  }
}

form {
  width: 100%;
}

.form-group {
  margin-bottom: 1rem;
}

form label {
  font-size: 16px;
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}

form input,
form textarea {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-top: var(--space-sm);
  padding: var(--space-lg);
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  background: var(--background);
  transition: border-color 0.2s ease-in-out;
}

form input:focus,
form textarea:focus {
  outline: 2px solid var(--color-brand);
  outline-offset: 2px;
  border-color: var(--color-brand);
}

form input {
  min-height: var(--button-height);
}

form textarea {
  min-height: 200px;
  resize: vertical;
}

form button.btn-pill {
  margin-top: var(--space-lg);
}

/* Pill Buttons */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px var(--space-2xl);
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  line-height: 1.5;
  height: var(--button-height);
  box-sizing: border-box;
  position: relative;
}

.btn-pill:focus-visible {
  outline: 3px solid var(--color-brand);
  outline-offset: 3px;
}

.btn-pill:disabled,
.btn-pill[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Primary Button */
.btn-pill-primary {
  background-color: var(--color-brand);
  color: var(--text-color-inverted);
  border-color: var(--color-brand);
}

.btn-pill-primary:hover:not(:disabled):not([disabled]) {
  background-color: var(--color-brand-dark);
  border-color: var(--color-brand-dark);
  box-shadow: 0 4px 12px var(--color-shadow);
  transform: translateY(-1px);
}

.btn-pill-primary:focus-visible:not(:disabled):not([disabled]) {
  background-color: var(--color-brand-dark);
  border-color: var(--color-brand-dark);
  box-shadow: 0 0 0 3px rgba(53, 30, 14, 0.3), 0 4px 12px var(--color-shadow);
}

.btn-pill-primary:active:not(:disabled):not([disabled]) {
  background-color: var(--color-brand-darker);
  border-color: var(--color-brand-darker);
  box-shadow: 0 2px 4px var(--color-shadow-light);
}

/* Secondary Button */
.btn-pill-secondary {
  background-color: transparent;
  color: var(--color-brand);
  border-color: var(--color-brand);
}

.btn-pill-secondary:hover:not(:disabled):not([disabled]) {
  background-color: var(--color-brand);
  color: var(--text-color-inverted);
  box-shadow: 0 4px 12px var(--color-shadow);
  transform: translateY(-1px);
}

.btn-pill-secondary:focus-visible:not(:disabled):not([disabled]) {
  background-color: var(--color-brand);
  color: var(--text-color-inverted);
  box-shadow: 0 0 0 3px rgba(53, 30, 14, 0.3), 0 4px 12px var(--color-shadow);
}

.btn-pill-secondary:active:not(:disabled):not([disabled]) {
  background-color: var(--color-brand-dark);
  border-color: var(--color-brand-dark);
  color: var(--text-color-inverted);
  box-shadow: 0 2px 4px var(--color-shadow-light);
}

/* Button as button element */
button.btn-pill {
  border: 2px solid transparent;
}

button.btn-pill-primary {
  background-color: var(--color-brand);
  color: var(--text-color-inverted);
  border-color: var(--color-brand);
}

button.btn-pill-secondary {
  background-color: transparent;
  color: var(--color-brand);
  border-color: var(--color-brand);
}

/* Tertiary Button */
.btn-pill-tertiary {
  background-color: transparent;
  color: var(--color-brand);
  border: none;
}

.btn-pill-tertiary:hover:not(:disabled):not([disabled]) {
  background-color: var(--bg-color);
  color: var(--color-brand);
  transform: translateY(-1px);
}

.btn-pill-tertiary:focus-visible:not(:disabled):not([disabled]) {
  background-color: var(--bg-color);
  color: var(--color-brand);
  box-shadow: 0 0 0 3px rgba(53, 30, 14, 0.3);
}

.btn-pill-tertiary:active:not(:disabled):not([disabled]) {
  background-color: var(--bg-color);
  color: var(--color-brand);
}

button.btn-pill-tertiary {
  background-color: transparent;
  color: var(--color-brand);
  border: none;
}

/* Button Icons */
.btn-pill-icon-leading::before,
.btn-pill-icon-trailing::after {
  display: inline-block;
  font-size: 1em;
  line-height: 1;
  transition: transform 0.3s ease-in-out;
}

.btn-pill-icon-leading::before {
  content: attr(data-icon-leading);
  margin-right: var(--space-md);
}

.btn-pill-icon-trailing::after {
  content: attr(data-icon-trailing);
  margin-left: var(--space-md);
}

.btn-pill:hover .btn-pill-icon-leading::before,
.btn-pill:focus-visible .btn-pill-icon-leading::before {
  transform: translateX(-4px);
}

.btn-pill:hover .btn-pill-icon-trailing::after,
.btn-pill:focus-visible .btn-pill-icon-trailing::after {
  transform: translateX(4px);
}

/* Specific icon classes for common arrows */
.btn-pill-arrow-left::before {
  content: "←";
  display: inline-block;
  margin-right: var(--space-md);
  transition: transform 0.3s ease-in-out;
}

.btn-pill-arrow-right::after {
  content: "→";
  display: inline-block;
  margin-left: var(--space-md);
  transition: transform 0.3s ease-in-out;
}

.btn-pill-arrow-up::before {
  content: "↑";
  display: inline-block;
  margin-right: var(--space-md);
  transition: transform 0.3s ease-in-out;
}

.btn-pill-arrow-down::after {
  content: "↓";
  display: inline-block;
  margin-left: var(--space-md);
  transition: transform 0.3s ease-in-out;
}

.btn-pill-arrow-left:hover::before,
.btn-pill-arrow-left:focus-visible::before {
  transform: translateX(-4px);
}

.btn-pill-arrow-right:hover::after,
.btn-pill-arrow-right:focus-visible::after {
  transform: translateX(4px);
}

/* Footer */
.site-footer {
  align-items: center;
  background-color: var(--color-footer-bg);
  color: var(--text-color-secondary);
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
  justify-content: center;
  min-height: var(--footer-min-height);
  padding: var(--rem-8) var(--rem-2);
  text-align: center;
  width: 100%;
}

.instagram-section {
  width: 100%;
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 0 var(--rem-2);
}

.instagram-title-wrapper {
  align-items: flex-start;
  display: flex;
  gap: var(--rem-1);
  justify-content: center;
  margin-bottom: var(--rem-2);
}

.instagram-section h2 {
  color: var(--text-color-inverted);
  font-family: var(--font-brand);
  font-size: var(--text-3xl);
  padding: 0;
  text-align: center;
}

@media (min-width: 640px) {
  .instagram-section h2 {
    font-size: var(--text-4xl);
  }
}

.instagram-icon {
  height: var(--icon-size-sm);
  margin-top: 9px;
  width: var(--icon-size-sm);
}

@media (min-width: 640px) {
  .instagram-icon {
    height: var(--icon-size-md);
    margin-top: var(--space-lg);
    width: var(--icon-size-md);
  }
}

.instagram-section p {
  margin-bottom: var(--rem-1-5);
}

.instagram-section a {
  color: var(--text-color-inverted);
  text-decoration: none;
}

.instagram-section a:hover {
  text-decoration: underline;
}

.instagram-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.instagram-grid a {
  width: 100%;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
}

@media (min-width: 640px) {
  .instagram-grid a {
    max-width: none;
    width: calc(50% - 3px);
  }
}

@media (min-width: 1024px) {
  .instagram-grid a {
    flex: 1 1 0;
  }
}

.instagram-grid img {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  width: 100%;
  height: auto;
  transition: transform 0.3s ease-in-out;
  display: block;
  will-change: transform;
}

.instagram-grid a:hover img,
.instagram-grid a:focus img {
  transform: scale(1.05);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.footer-logo {
  width: 125px;
  height: auto;
}

.copyright {
  color: var(--text-color-inverted);
  font-size: var(--text-md);
}

/* Page Headers */
h1 {
  color: var(--color-brand);
  font-family: var(--font-brand);
  font-size: var(--text-3xl);
  padding: 0 0 2rem;
}

@media (min-width: 640px) {
  h1 {
    font-size: var(--text-4xl);
  }
}

/* Showcase Page */
.showcase-page {
  background: var(--bg-color);
  padding-top: 3rem;
}

@media (min-width: 640px) {
  .showcase-page {
    padding-top: 5rem;
  }
}

.showcase-page-content {
  max-width: var(--max-content-width);
  margin: 0 auto;
}

.showcase-page h1 {
  color: var(--color-brand);
  font-family: var(--font-brand);
  font-size: var(--text-4xl);
  padding: 0 var(--section-padding-x) var(--space-3xl);
  text-align: center;
}

@media (min-width: 640px) {
  .showcase-page h1 {
    padding: 0 var(--section-padding-x-md) var(--space-4xl);
  }
}

.showcase-page .showcase-grid {
  padding: 0 var(--section-padding-x) var(--space-4xl);
}

@media (min-width: 640px) {
  .showcase-page .showcase-grid {
    padding: 0 var(--section-padding-x-md) var(--space-4xl);
  }
}

/* Product Page */
.product-page-wrapper {
  background-color: var(--bg-color);
  padding: 5rem 0;
}

.product-page-container {
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: var(--section-padding-y-md) var(--section-padding-x) var(--space-5xl);
}

@media (min-width: 640px) {
  .product-page-container {
    padding: var(--section-padding-y-md) var(--section-padding-x-md) var(--space-5xl);
  }
}

.product-back-link-wrapper {
  margin-bottom: var(--space-2xl);
}

.product-box {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 4rem;
  row-gap: 2rem;
}

@media (min-width: 640px) {
  .product-box {
    grid-template-columns: 3fr 2fr;
  }
}

@media (min-width: 1024px) {
  .product-box {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-image-wrapper {
  display: flex;
  justify-content: flex-end;
  order: 1;
  position: relative;
}

@media (min-width: 640px) {
  .product-image-wrapper {
    order: 0;
  }
}

.product-image-list {
  width: 100%;
}

.product-image-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.product-image-item {
  display: flex;
  flex: 0 0 100%;
  white-space: nowrap;
}

.product-image-item img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
}

.product-info {
  max-width: 600px;
}

.product-header {
  color: var(--color-brand);
  font-family: var(--font-brand);
  font-size: var(--text-3xl);
  font-weight: var(--bold);
  line-height: var(--dense);
  margin-bottom: var(--space-xl);
}

@media (min-width: 640px) {
  .product-header {
    font-size: var(--text-4xl);
  }
}

.product-price {
  padding: var(--space-lg) 0;
  margin: 0;
  font-size: var(--text-2xl);
  font-weight: var(--bold);
  line-height: var(--dense);
}

.product-price span {
  color: var(--primary);
  font-size: var(--text-3xl);
  font-weight: var(--bold);
  line-height: var(--dense);
}

@media (min-width: 640px) {
  .product-price span {
    font-size: var(--text-4xl);
  }
}

.product-description {
  color: var(--text-color);
  font-size: var(--text-lg);
  line-height: 1.8;
  margin-top: var(--space-xl);
}

