:root {
  --bg-main: #f6f1eb;
  --bg-soft: #efe7de;
  --bg-alt: #f4f0ea;
  --bg-white: #ffffff;
  --text-main: #2f2a26;
  --text-soft: #6e6258;
  --text-muted: #5f564d;
  --accent: #b39a80;
  --accent-hover: #9d846b;
  --line: #d8cdc2;
  --line-dark: #bda992;
  --heading: #2f2a26;
  --max-width: 1200px;
  --transition: 0.2s ease;
}
/* ===============================
   BASE
================================ */
html {
  font-size: 18px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.7;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}
.container {
  width: 90%;

  margin: 0 auto;
}
/* ===============================
   BUTTONS
================================ */
.cta-center {
  display: block;
  margin: 20px auto 0;
  text-align: center;
  width: fit-content;
}
.button, .hero-button {
  display: inline-block;
  padding: 12px 22px;
  background: var(--accent);
  color: #ffffff;
  text-decoration: none;
  border: none;
  border-radius: 2px;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  font-weight: 600;
}
.button:hover, .hero-button:hover {
  background: var(--accent-hover);
  color: #ffffff;
}
/* ===============================
   TYPOGRAPHY
================================ */
h1, h2, h3 {
 
  color: var(--heading);
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 10px;
  position: relative;
  font-family: Georgia, "Times New Roman", serif;
}
h1::after, h2::after, h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: var(--line);
  margin: 12px auto 0;
}
.section p {
  
}
.category-card {
  pointer-events: none;
}
.category-card p {
  text-align: center;
  color: var(--text-soft);
  line-height: 1.9;
  margin: 0 auto 20px;
  max-width: 700px;
  font-family: Arial, sans-serif;
}
/* ===============================
   HEADER
================================ */
.site-header {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  width: 100%;
  margin: 0;
  padding: 12px 5%;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
}
.header-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.logo a {
  color: var(--text-main);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
}
.logo a:hover {
  color: #8a7f73;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.main-nav a {
  color: var(--text-main);
  font-size: 0.9rem;
  font-family: Arial, sans-serif;
}
.main-nav a:hover {
  color: #8a7f73;
}
.main-nav a.active {
  border-bottom: 2px solid #8a7f73;
  padding-bottom: 4px;
}
.header-placeholder {
  width: 24px;
  height: 24px;
}
/* ===============================
   HERO
================================ */
.hero {
  min-height: 360px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      to right,
      rgba(246,241,235,0.92) 0%,
      rgba(246,241,235,0.88) 20%,
      rgba(246,241,235,0.60) 40%,
      rgba(246,241,235,0.20) 60%,
      rgba(246,241,235,0.00) 80%
    ),
    url('images/storefront-hero.jpg') 72% center / cover no-repeat;
}
.hero-content {
  margin-left: 0;
  padding-left: 5%;
  width: 640px;
}
.eyebrow {
  display: block;
	padding-top: 6px;
  color: #a8927c;
  letter-spacing: 1.5px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}
.hero h1 {
  color: var(--text-main);
  text-align: left;
  font-size: 3rem;
  line-height: 1.03;
  font-weight: 500;
  margin: 0 0 14px 0;
  width: 640px;
}
.hero h1::after {
  display: none;
}
.hero p {
  color: var(--text-muted);
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 22px 0;
  max-width: 390px;
}
/* ===============================
   SECTIONS
================================ */
.section {
  padding: 90px 0;
  background: #ffffff; 
  text-align: center;
}
.section-alt {
  background: var(--bg-alt);
}
.section-divider {
  width: 100%;
  height: 1px;
  background: var(--line);
}
.intro-block {
  padding: 10px 0 10px;
}
.intro-block h2 {
  margin-bottom: 10px;
}
.intro-block p {
  max-width: 620px;
  font-size: 0.9rem;
  line-height: 1.6;
}
.section-left {
  text-align: left;
}
.section-right {
  text-align: right;
}
/* ===============================
   CATEGORY SCROLL
================================ */
.category-scroll-section {
  background: #f4f0ea;
  padding: 40px 0;
}
.category-shell {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 80px;
  box-sizing: border-box;
}
.category-scroll-wrap {
  display: grid;
  grid-template-columns: 50px 1fr 50px;
  align-items: center;
  width: 100%;
}
.category-scroll {
  display: flex;

  overflow-x: auto;
  scroll-behavior: smooth;
  width: 100%;
  padding: 0;
  margin: 0 auto;
}
.category-scroll::-webkit-scrollbar {
  display: none;
}
.category-card {
  flex: 0 0 230px;
  text-align: center;
  color: var(--text-main);
  padding: 0 18px;
  position: relative;
}
.category-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 0;
  width: 1px;
  height: 340px;
  background: var(--line);
}
.category-image {
  width: 100%;
  height: 150px;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 4px;
  position: relative;background: #b39b83;
}

.category-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
  z-index: 2;
}
.category-card h3 {
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 10px;
  min-height: 2.7em;
}
.category-card h3::after {
  display: none;
}
.category-card p {
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-soft);
  margin: 0 auto;
  max-width: 190px;
}
.category-arrow {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #f4f0ea;
  color: var(--text-main);
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0;
}
.category-arrow:hover {
  background: #efe7de;
}
/* ===============================
   FOOTER
================================ */
.site-footer {
  background: var(--bg-alt);
  color: var(--text-main);
  border-top: 1px solid var(--line);
}
.footer-inner {
  width: 100%;
  margin: 0;
  padding: 18px 5%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.footer-left {
  text-align: left;
  font-size: 14px;
}
.footer-center {
  min-height: 1px;
}
.footer-right {
  text-align: right;
}
.footer-nav {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.footer-right a {
  color: var(--text-main);
  font-size: 14px;
}
.footer-right a:hover {
  color: #8a7f73;
}
/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
  .category-arrow {
    display: none;
  }
  .header-inner, .footer-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }
  .header-left, .header-center, .header-right, .footer-right {
    justify-content: center;
    text-align: center;
  }
  .main-nav {
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-nav {
    justify-content: center;
  }
  .hero {
    min-height: auto;
    padding: 70px 0;
    background:
      linear-gradient(to bottom, rgba(246, 241, 235, 0.92) 0%, rgba(246, 241, 235, 0.85) 45%, rgba(246, 241, 235, 0.65) 100%), url('images/storefront-hero.jpg') center center / cover no-repeat;
  }
  .hero-content, .hero h1 {
    width: 100%;
  }
  .hero-content {
    padding: 0 5%;
  }
  .hero h1, .hero p {
    text-align: center;
  }
  .hero h1::after {
    display: block;
  }
  .hero p {
    max-width: 700px;
    margin: 0 auto 22px;
  }
}
@media (max-width: 640px) {
  html {
    font-size: 18px;
  }
  .section {
    padding: 65px 0;
  }
  .button, .hero-button {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}
/* ===============================
   FEATURES
================================ */
.features-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 40px;
  padding: 25px 0;
}
.feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: center;
  flex: 0 0 260px; /* fixed width per item */
}
.feature .icon {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  border-radius: 50%;
  background: #e9e3dd;
  color: #a68a6a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin-right: 12px;
  margin-top: 6px;
}
.feature h3 {
  font-family: Arial, sans-serif;
  font-size: 0.80rem;
  font-weight: 700;
}
.feature h3::after {
  display: none;
}
.feature p {
  font-family: Arial, sans-serif;
  font-size: 0.75rem;
  color: #6e6258;
  line-height: 1.5;
  font-weight: 400;
  margin: 0 auto;
  max-width: 180px;
}
.feature-text h3 {
  margin: 0;
}
.features-row .feature {
  position: relative;
}
.features-row .feature:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 20%;
  height: 60%;
  width: 1px;
  background: #d8cdc2;
}
/* ========================================
PAGE TEMPLATES
======================================== */

.page-template {
  width: 100%;
}

.inner-hero {
  min-height: 240px;
  position: relative;

  background-color: #e5d6c7;

  background-size: auto 100%;
  background-position: right center;
  background-repeat: no-repeat;
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to right,
    rgba(246,241,235,0.92) 0%,
    rgba(246,241,235,0.88) 20%,
    rgba(246,241,235,0.60) 40%,
    rgba(246,241,235,0.20) 60%,
    rgba(246,241,235,0.00) 80%
  );

  pointer-events: none;
}

.inner-hero .hero-content {
  position: relative;
  z-index: 1;
}
@media (max-width: 640px) {
  .inner-hero::before {
    background: rgba(246,241,235,0.75);
  }
}

/* ========================================
GLOBAL TEMPLATE SECTIONS
======================================== */

.section {
  padding: 90px 0;
}

.section-alt {
  background: var(--bg-soft);
}


/* ========================================
NARROW CONTENT
======================================== */

.narrow-center {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}


/* ========================================
SIDEBAR LAYOUTS
======================================== */

.layout-sidebar-left,
.layout-sidebar-right {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
}

.layout-sidebar-right {
  grid-template-columns: 1fr 280px;
}


/* ========================================
CATEGORY TEMPLATE
======================================== */

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


/* ========================================
RESPONSIVE
======================================== */

@media (max-width: 980px) {

  .layout-sidebar-left,
  .layout-sidebar-right,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .page-banner {
    padding: 80px 0;
  }

  .section {
    padding: 70px 0;
  }

}