/*
Theme Name: TheLivingColor
Theme URI: https://example.com/thelivingcolor
Author: Janet
Author URI: https://example.com
Description: A premium WordPress theme for TheLivingColor labels and tags business. Featuring a beautiful gold and brown color scheme, responsive design, and unified header and footer across all pages.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: thelivingcolor
Tags: custom-menu, custom-logo, featured-images, theme-options, translation-ready, wide-blocks
*/

/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
  --gold: #b8982a;
  --gold-light: #d4af37;
  --gold-pale: #f0e6b8;
  --dark: #1a1a1a;
  --cream: #f5f0e8;
  --cream-dark: #ece5d6;
  --warm-brown: #8b7355;
  --warm-brown-dark: #6b5640;
  --text-dark: #2c2c2c;
  --border: #ddd5c0;
  --white: #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif: 'Libre Baskerville', Georgia, serif;
  --font-sans: 'Montserrat', system-ui, sans-serif;

  --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.08);
  --shadow-md: 0 6px 24px rgba(26, 26, 26, 0.12);
  --shadow-lg: 0 16px 48px rgba(26, 26, 26, 0.18);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

/* ====== RESET ====== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--gold);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

/* ============================================
   SITE WRAPPER
   ============================================ */
.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-content {
  flex: 1;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: var(--dark);
  color: var(--gold-light);
  text-align: center;
  padding: 8px 20px;
  font-size: 0.75rem;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.announcement-bar span {
  opacity: 0.8;
}

.announcement-bar span.sep {
  color: var(--gold);
  opacity: 0.5;
}

/* ============================================
   MAIN HEADER
   ============================================ */
.main-header {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
}

.logo-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-name .brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--dark);
  line-height: 1.1;
}

.logo-name .brand em {
  color: var(--gold);
  font-style: normal;
}

.logo-name .tagline {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--warm-brown);
  text-transform: uppercase;
}

/* Search */
.header-search {
  flex: 1;
  max-width: 480px;
  position: relative;
}

.header-search input {
  width: 100%;
  padding: 10px 44px 10px 16px;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.header-search input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 152, 42, 0.12);
}

.header-search input::placeholder {
  color: #aaa;
}

.search-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--warm-brown);
  padding: 0;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.search-btn:hover {
  color: var(--gold);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.btn-outline-gold,
.btn-gold-solid {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border: 1.5px solid var(--gold);
  border-radius: 24px;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-gold-solid {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  border: none;
}

.btn-gold-solid:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ============================================
   MAIN NAVIGATION
   ============================================ */
.main-nav {
  background: var(--warm-brown);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  height: 48px;
  gap: 0;
}

.primary-menu {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0;
}

.primary-menu li {
  position: relative;
  height: 100%;
}

.primary-menu a {
  display: flex;
  align-items: center;
  padding: 0 20px;
  height: 100%;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  gap: 5px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.primary-menu a:hover,
.primary-menu .current-menu-item a {
  color: var(--gold-light);
  background: rgba(0, 0, 0, 0.15);
}

.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-flag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.08em;
}

.flag-icon {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(26, 26, 26, 0.92) 0%,
      rgba(26, 26, 26, 0.75) 50%,
      rgba(139, 115, 85, 0.6) 100%),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80&auto=format&fit=crop') center/cover no-repeat;
}

.hero-texture {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 2px,
    rgba(184, 152, 42, 0.03) 2px,
    rgba(184, 152, 42, 0.03) 4px
  );
}

.hero-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 32px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184, 152, 42, 0.15);
  border: 1px solid rgba(184, 152, 42, 0.4);
  border-radius: 20px;
  padding: 6px 16px;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-title .gold-text {
  color: var(--gold-light);
  display: block;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(184, 152, 42, 0.4);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184, 152, 42, 0.5);
}

.btn-hero-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-hero-secondary:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(184, 152, 42, 0.08);
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(184, 152, 42, 0.2);
}

.hero-stat-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--gold-light);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(184, 152, 42, 0.25);
  border-radius: var(--radius-md);
  overflow: hidden;
  backdrop-filter: blur(8px);
  transition: transform 0.3s, border-color 0.3s;
}

.hero-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.5);
}

.hero-card:first-child {
  grid-column: 1 / -1;
}

.hero-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.hero-card:first-child .hero-card-img {
  aspect-ratio: 21/9;
}

.hero-card-info {
  padding: 12px 16px;
}

.hero-card-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.hero-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--white);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--cream-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 18px;
  height: 18px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.trust-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.04em;
}

.trust-text span {
  font-size: 0.7rem;
  color: var(--warm-brown);
}

.trust-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ============================================
   MAIN CONTENT LAYOUT
   ============================================ */
.content-area {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

/* ============================================
   BLOG POSTS GRID
   ============================================ */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.post-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.post-card-thumbnail {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream);
}

.post-card-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-card:hover .post-card-thumbnail img {
  transform: scale(1.06);
}

.post-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.post-card-meta {
  font-size: 0.75rem;
  color: var(--warm-brown);
  margin-bottom: 12px;
}

.post-card-excerpt {
  font-size: 0.85rem;
  color: var(--warm-brown);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.post-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: transparent;
  border: 1.5px solid var(--gold);
  border-radius: 3px;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  align-self: flex-start;
}

.post-card .read-more:hover {
  background: var(--gold);
  color: var(--white);
}

/* ============================================
   ARCHIVE HEADER
   ============================================ */
.archive-header {
  background: var(--cream-dark);
  padding: 40px 32px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.archive-header .container {
  max-width: 1280px;
  margin: 0 auto;
}

.archive-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--dark);
}

.archive-description {
  font-family: var(--font-serif);
  color: var(--warm-brown);
  margin-top: 8px;
}

/* ============================================
   SINGLE POST / PAGE
   ============================================ */
.single-post-header,
.page-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--border);
}

.single-post-title,
.page-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--warm-brown);
}

.post-featured-image {
  margin-bottom: 32px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.entry-content {
  font-size: 1rem;
  line-height: 1.8;
}

.entry-content p {
  margin-bottom: 1.5em;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  font-family: var(--font-display);
  color: var(--dark);
  margin-top: 2em;
  margin-bottom: 0.5em;
  line-height: 1.3;
}

.entry-content h2 {
  font-size: 1.6rem;
}

.entry-content h3 {
  font-size: 1.3rem;
}

.entry-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-content a:hover {
  color: var(--gold-light);
}

.entry-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--cream);
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--warm-brown-dark);
}

.entry-content ul,
.entry-content ol {
  padding-left: 24px;
  margin-bottom: 1.5em;
}

.entry-content ul {
  list-style: disc;
}

.entry-content ol {
  list-style: decimal;
}

.entry-content li {
  margin-bottom: 0.5em;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.entry-content th,
.entry-content td {
  padding: 12px;
  border: 1px solid var(--border);
  text-align: left;
}

.entry-content th {
  background: var(--cream);
  font-weight: 700;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.post-tags a {
  display: inline-block;
  padding: 4px 12px;
  background: var(--cream);
  color: var(--warm-brown);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.post-tags a:hover {
  background: var(--gold);
  color: var(--white);
}

/* Post Navigation */
.post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.post-navigation a {
  display: block;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.2s, transform 0.2s;
}

.post-navigation a:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.post-navigation .nav-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 4px;
}

.post-navigation .nav-title {
  font-weight: 600;
  color: var(--dark);
}

/* ============================================
   COMMENTS
   ============================================ */
.comments-area {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 2px solid var(--border);
}

.comments-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--dark);
}

.comment-list {
  list-style: none;
}

.comment {
  padding: 20px;
  margin-bottom: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.comment-author {
  font-weight: 600;
  margin-bottom: 4px;
}

.comment-meta {
  font-size: 0.75rem;
  color: var(--warm-brown);
}

.comment-content {
  margin-top: 12px;
}

.comment-reply-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
}

.comment-reply-link:hover {
  color: var(--gold-light);
}

.comment-respond {
  margin-top: 32px;
}

.comment-form {
  display: grid;
  gap: 12px;
}

.comment-form .comment-form-author,
.comment-form .comment-form-email {
  grid-column: 1;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--white);
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 152, 42, 0.12);
}

.comment-form .submit {
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
}

.comment-form .submit:hover {
  opacity: 0.9;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--warm-brown);
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.pagination .page-numbers:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.pagination .page-numbers.current {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* ============================================
   404 PAGE
   ============================================ */
.error-404 {
  text-align: center;
  padding: 80px 0;
}

.error-404 .error-code {
  font-size: 6rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  font-family: var(--font-display);
}

.error-404 .page-title {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.error-404 .search-form {
  max-width: 500px;
  margin: 32px auto;
  display: flex;
  gap: 8px;
}

.error-404 .search-form input {
  flex: 1;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section {
  padding: 80px 0;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title span {
  color: var(--gold);
}

.section-desc {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--warm-brown);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Filter Bar */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 24px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--warm-brown);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-pale);
}

.filter-btn.active {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--gold-light);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Product Card */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.product-card.hidden {
  display: none;
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream);
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.product-card:hover .product-img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--dark);
  color: var(--gold-light);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}

.product-badge.new {
  background: var(--gold);
  color: var(--white);
}

.product-badge.popular {
  background: var(--warm-brown);
  color: var(--white);
}

.product-badge.custom {
  background: #2c5f2e;
  color: var(--white);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.overlay-btn {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transform: translateY(8px);
  transition: transform 0.3s;
}

.product-card:hover .overlay-btn {
  transform: translateY(0);
}

.product-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.product-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.8rem;
  color: var(--warm-brown);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.product-price {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
}

.product-price small {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--warm-brown);
  display: block;
  margin-top: 2px;
}

.card-action-btn {
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.card-action-btn:hover {
  opacity: 0.9;
}

.load-more-wrap {
  text-align: center;
  margin-top: 48px;
}

.btn-load-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--white);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-load-more:hover {
  background: var(--gold);
  color: var(--white);
}

/* ============================================
   HOW TO ORDER SECTION
   ============================================ */
.how-section {
  padding: 80px 0;
  background: var(--dark);
}

.how-section .section-title {
  color: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.step-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(184, 152, 42, 0.2);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.step-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.step-num {
  width: 50px;
  height: 50px;
  margin: 0 auto 16px auto;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-num span {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--white);
}

.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ============================================
   ABOUT STRIP SECTION
   ============================================ */
.about-strip {
  padding: 80px 0;
  background: var(--cream-dark);
}

.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.about-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.about-desc {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--warm-brown);
  line-height: 1.7;
  margin-bottom: 24px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.about-feat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  padding: 8px 14px;
  background: var(--white);
  border-radius: 4px;
}

.about-feat::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
}

.about-img-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
}

.about-img-item:first-child {
  grid-row: span 2;
}

.about-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.about-img-item:first-child img {
  aspect-ratio: 4/5;
}

.about-img-item:not(:first-child) img {
  aspect-ratio: 1/1;
}

/* ============================================
   MAIN FOOTER
   ============================================ */
.site-footer {
  background: var(--dark);
  padding-top: 64px;
  margin-top: auto;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px 40px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  grid-column: 1;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-logo-text .brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--white);
}

.footer-logo-text .brand em {
  color: var(--gold-light);
  font-style: normal;
}

.footer-logo-text .sub {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item a:hover {
  color: var(--gold-light);
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(184, 152, 42, 0.25);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  display: inline-block;
  padding-left: 0;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-made {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.footer-made .au-dot {
  width: 18px;
  height: 12px;
  background: linear-gradient(135deg, #00008b 50%, red 50%);
  border-radius: 2px;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--gold-light);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0 16px;
    height: auto;
    min-height: 70px;
    flex-wrap: wrap;
  }

  .header-search {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .btn-outline-gold {
    display: none;
  }

  .nav-inner {
    padding: 0 16px;
    overflow-x: auto;
  }

  .hero-inner {
    padding: 60px 16px;
  }

  .content-area {
    padding: 32px 16px;
  }

  .archive-header {
    padding: 32px 16px;
  }

  .posts-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .section-inner {
    padding: 0 16px;
  }

  .trust-inner {
    padding: 16px;
    gap: 12px;
  }

  .trust-sep {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 0 16px 32px 16px;
  }

  .footer-bottom {
    padding: 16px;
    flex-direction: column;
    text-align: center;
  }

  .post-navigation {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .announcement-bar {
    font-size: 0.7rem;
  }

  .logo-name .brand {
    font-size: 1.1rem;
  }

  .announcement-bar span.sep {
    display: none;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .main-header,
  .main-nav,
  .site-footer,
  .announcement-bar,
  .trust-bar,
  .hero {
    display: none !important;
  }

  .content-area {
    padding: 0;
  }
}

/* ============================================
   ACCESSIBILITY: 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;
  }
}
