/* Global */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fafafa;
  color: #111827;
}

a {
  color: inherit;
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 20px 60px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.logo-wrap {
  display: flex;
  align-items: center;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  margin-right: 10px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 700;
  color: #b21f24;
}

.logo-tagline {
  font-size: 0.8rem;
  color: #6b7280;
}

.site-nav a {
  margin-left: 18px;
  text-decoration: none;
  font-weight: 500;
  color: #374151;
}

.site-nav a:hover {
  color: #b21f24;
}

/* Footer */

.site-footer {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #e5e7eb;
  background: #f9fafb;
  color: #6b7280;
  font-size: 0.9rem;
}

/* Basic text sections */

h1,
h2,
h3 {
  color: #111827;
}

.section-intro {
  color: #4b5563;
  max-width: 640px;
}

.section-footnote {
  margin-top: 18px;
  font-size: 0.9rem;
  color: #6b7280;
}

.text-link {
  color: #b21f24;
  text-decoration: none;
  font-weight: 500;
}

.text-link:hover {
  text-decoration: underline;
}

/* Hero */

.hero {
  margin-bottom: 32px;
}

.hero-copy h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.hero-actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Buttons */

.etsy-btn {
  background: #cc483d;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.etsy-btn:hover {
  background: #b21f24;
}

/* Breadcrumb */

.breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 14px;
  color: #6b7280;
}

.breadcrumb a {
  color: #6b7280;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* PRODUCT CARD GRID */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 18px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 12px 12px 14px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.14);
}

.card-link-wrap {
  display: block;
  text-decoration: none;
}

.thumb {
  border-radius: 14px;
  overflow: hidden;
}

.thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}

.card:hover .thumb img {
  transform: scale(1.03);
}

.card-body {
  margin-top: 10px;
}

.card-title {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 600;
}

.card-title a {
  text-decoration: none;
  color: #111827;
}

.card-title a:hover {
  color: #b21f24;
}

.card-price {
  color: #b21f24;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.card-desc {
  font-size: 0.9rem;
  color: #4b5563;
  margin: 0;
}

.card-link {
  display: inline-block;
  margin-top: 8px;
  color: #b21f24;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.card-link:hover {
  text-decoration: underline;
}

/* PRODUCT PAGE */

.product-page {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: flex-start;
  margin-top: 10px;
}

.product-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.product-info h1 {
  margin-top: 0;
}

.price {
  color: #b21f24;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 4px 0 10px;
}

/* Blog */

.blog-list {
  list-style: none;
  padding-left: 0;
}

.blog-list li + li {
  margin-top: 6px;
}

.blog-list a {
  color: #b21f24;
  text-decoration: none;
}

.blog-list a:hover {
  text-decoration: underline;
}

/* MOBILE */

@media (max-width: 800px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .site-nav {
    display: flex;
    flex-wrap: wrap;
  }

  .site-nav a {
    margin-left: 0;
    margin-right: 16px;
  }

  .product-page {
    grid-template-columns: 1fr;
  }

  main {
    padding: 24px 16px 40px;
  }
}
/* --- HERO SECTION --- */

.hero {
  width: 100%;
  padding: 2.5rem 1rem;
  display: flex;
  justify-content: center;
}

.hero-inner {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  object-fit: cover;
}

.hero-text h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #1d1d1d;
}

.hero-text p {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.hero-btn {
  display: inline-block;
  background: #c03639;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s ease;
}

.hero-btn:hover {
  background: #9f2e2f;
}

/* MOBILE FIXES */
@media (max-width: 800px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero img {
    margin-bottom: 1rem;
  }
}
