/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #2D2A26; background: #FAFAF8; line-height: 1.6;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== NAVIGATION ===== */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #E8E4DE;
  transition: box-shadow 0.3s ease;
}
.site-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 20px; height: 60px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: #2D2A26; }
.logo-accent { color: #D4A574; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-size: 14px; font-weight: 500; color: #5A5650;
  letter-spacing: 0.3px; transition: color 0.3s; position: relative;
  white-space: nowrap;
}
.nav-link:hover { color: #D4A574; }
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: #D4A574; transition: width 0.3s;
}
.nav-link:hover::after { width: 100%; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 1001; -webkit-tap-highlight-color: transparent; }
.ham-line { width: 22px; height: 2px; background: #2D2A26; border-radius: 2px; transition: all 0.3s ease; display: block; }
.hamburger.active .ham-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active .ham-line:nth-child(2) { opacity: 0; }
.hamburger.active .ham-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: #FAFAF8; flex-direction: column; padding: 80px 28px 28px;
    gap: 20px; box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    transition: right 0.35s ease; z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-link { font-size: 16px; padding: 8px 0; }
  .nav-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.3);
    z-index: 998; opacity: 0; pointer-events: none; transition: opacity 0.3s;
  }
  .nav-overlay.visible { opacity: 1; pointer-events: auto; }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 100px 20px 60px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #FAFAF8 0%, #F5F0EB 50%, #FAFAF8 100%);
}
.hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero-content { z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 50px;
  background: rgba(212,165,116,0.12); color: #D4A574;
  font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Playfair Display', serif; font-size: clamp(32px, 5vw, 60px);
  font-weight: 700; line-height: 1.1; color: #2D2A26; margin-bottom: 16px;
}
.hero-title em { font-style: italic; color: #D4A574; }
.hero-desc { font-size: 16px; color: #5A5650; line-height: 1.7; margin-bottom: 28px; max-width: 480px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  padding: 12px 28px; background: #2D2A26; color: #fff;
  border-radius: 50px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.3px; transition: all 0.3s; display: inline-block;
}
.btn-primary:hover { background: #1a1816; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(45,42,38,0.2); }
.btn-outline {
  padding: 12px 28px; border: 1.5px solid #2D2A26; color: #2D2A26;
  border-radius: 50px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.3px; transition: all 0.3s; display: inline-block;
}
.btn-outline:hover { background: #2D2A26; color: #fff; }
.hero-image { position: relative; z-index: 2; }
.hero-image img {
  width: 100%; border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  aspect-ratio: 3/4; object-fit: cover;
}
.hero-float {
  position: absolute; opacity: 0.12; pointer-events: none;
  animation: floatUp 6s ease-in-out infinite;
}
.hero-float:nth-child(2) { animation-delay: -2s; }
.hero-float:nth-child(3) { animation-delay: -4s; }
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 80px 16px 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .hero-desc { margin: 0 auto 24px; }
  .hero-btns { justify-content: center; }
  .hero-image { max-width: 320px; margin: 0 auto; }
  .hero-float { display: none; }
}

/* ===== SECTIONS ===== */
.section { padding: 60px 20px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 36px; }
.section-label {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: #D4A574; margin-bottom: 8px;
}
.section-title {
  font-family: 'Playfair Display', serif; font-size: clamp(26px, 4vw, 38px);
  font-weight: 700; color: #2D2A26; line-height: 1.2;
}
.section-subtitle { font-size: 15px; color: #8C8A84; margin-top: 10px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ===== CATEGORIES ===== */
.categories-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}
.category-card {
  background: #fff; border-radius: 14px; padding: 20px 12px;
  text-align: center; border: 1px solid #E8E4DE;
  transition: all 0.3s ease; cursor: pointer;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(212,165,116,0.12);
  border-color: #D4A574;
}
.category-icon { font-size: 28px; margin-bottom: 8px; display: block; }
.category-name { font-weight: 600; font-size: 13px; color: #2D2A26; }
.category-count { font-size: 11px; color: #8C8A84; margin-top: 2px; }

/* ===== PRODUCT CARDS ===== */
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  border: 1px solid #E8E4DE; transition: all 0.4s ease; display: block;
}
.product-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.product-img-wrap { position: relative; overflow: hidden; }
.product-img-wrap img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.product-info { padding: 16px; }
.product-title {
  font-family: 'Playfair Display', serif; font-size: 15px;
  font-weight: 700; color: #2D2A26; margin-bottom: 8px; line-height: 1.3;
}
.product-amazon { margin-bottom: 6px; }
.product-brand { font-size: 12px; font-weight: 600; color: #8C8A84; display: block; margin-bottom: 3px; }
.product-rating { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; }
.star { font-size: 13px; }
.star.filled { color: #FF9900; }
.star.half { color: #FF9900; }
.star.empty { color: #E0E0E0; }
.review-count { font-size: 11px; color: #8C8A84; margin-left: 4px; }
.product-excerpt { font-size: 13px; color: #8C8A84; line-height: 1.5; margin-bottom: 12px; }
.product-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 600; color: #D4A574; transition: gap 0.3s;
}
.product-link:hover { gap: 8px; }

@media (max-width: 768px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-info { padding: 12px; }
  .product-title { font-size: 13px; }
  .product-excerpt { font-size: 11px; -webkit-line-clamp: 2; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
  .product-brand { font-size: 11px; }
  .star { font-size: 11px; }
}
@media (max-width: 400px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .product-info { padding: 10px; }
  .product-title { font-size: 12px; }
  .product-amazon { display: none; }
}

/* ===== COLLECTIONS ===== */
.collections-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.collection-card {
  position: relative; border-radius: 16px; overflow: hidden;
  aspect-ratio: 4/5; cursor: pointer; display: block;
}
.collection-card img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s;
}
.collection-card:hover img { transform: scale(1.06); }
.collection-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
}
.collection-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: #fff; }
.collection-count { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 4px; }
@media (max-width: 768px) {
  .collections-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .collection-name { font-size: 16px; }
  .collection-overlay { padding: 16px; }
}

/* ===== BLOG SECTION ===== */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.blog-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  border: 1px solid #E8E4DE; transition: all 0.3s; display: block;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.blog-card img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform 0.4s;
}
.blog-card:hover img { transform: scale(1.03); }
.blog-card-body { padding: 16px; }
.blog-card-cat {
  font-size: 10px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: #D4A574; margin-bottom: 6px;
}
.blog-card-title {
  font-family: 'Playfair Display', serif; font-size: 16px;
  font-weight: 700; color: #2D2A26; line-height: 1.3; margin-bottom: 6px;
}
.blog-card-excerpt { font-size: 13px; color: #8C8A84; line-height: 1.4; }
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; gap: 16px; }
  .blog-card-title { font-size: 15px; }
}

/* ===== PHILOSOPHY ===== */
.philosophy {
  background: #2D2A26; color: #fff; padding: 60px 20px;
}
.philosophy-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.philosophy-label {
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: #D4A574; margin-bottom: 10px;
}
.philosophy-title {
  font-family: 'Playfair Display', serif; font-size: clamp(26px, 4vw, 36px);
  font-weight: 700; line-height: 1.2; margin-bottom: 16px;
}
.philosophy-text { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.8; }
.philosophy-img img {
  width: 100%; border-radius: 16px; aspect-ratio: 4/5; object-fit: cover;
}
@media (max-width: 768px) {
  .philosophy-inner { grid-template-columns: 1fr; }
  .philosophy { padding: 48px 16px; }
}

/* ===== CTA ===== */
.cta {
  padding: 60px 20px;
  background: linear-gradient(135deg, #D4A574 0%, #B8895A 100%);
  text-align: center;
}
.cta-title {
  font-family: 'Playfair Display', serif; font-size: clamp(26px, 4vw, 38px);
  font-weight: 700; color: #fff; margin-bottom: 12px;
}
.cta-desc { font-size: 16px; color: rgba(255,255,255,0.85); margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }
.btn-white {
  padding: 12px 28px; background: #fff; color: #2D2A26;
  border-radius: 50px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.3px; transition: all 0.3s; display: inline-block;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }

/* ===== FOOTER ===== */
.site-footer {
  background: #2D2A26; color: rgba(255,255,255,0.7); padding: 48px 20px 0;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px;
  padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.footer-desc { font-size: 13px; line-height: 1.6; }
.footer-heading { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 12px; }
.footer-link { display: block; font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 8px; transition: color 0.3s; }
.footer-link:hover { color: #D4A574; }
.footer-bottom { text-align: center; padding: 16px; font-size: 11px; color: rgba(255,255,255,0.4); }
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ===== BLOG POST PAGE ===== */
.blog-post-page { padding: 90px 16px 48px; }
.blog-post-inner { max-width: 760px; margin: 0 auto; }
.blog-post-breadcrumb {
  font-size: 12px; color: #8C8A84; margin-bottom: 16px;
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.blog-post-breadcrumb a { color: #D4A574; }
.blog-post-cat {
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: #D4A574; margin-bottom: 10px;
}
.blog-post-title {
  font-family: 'Playfair Display', serif; font-size: clamp(24px, 4vw, 36px);
  font-weight: 700; color: #2D2A26; line-height: 1.2; margin-bottom: 16px;
}
.blog-post-img {
  width: 100%; border-radius: 12px; margin-bottom: 24px;
  aspect-ratio: 4/3; object-fit: cover;
}
.blog-post-content p { color: #37352F; line-height: 1.85; margin-bottom: 20px; font-size: 16px; }
.blog-post-content h2 {
  font-family: 'Playfair Display', serif; font-size: 22px;
  font-weight: 700; color: #2D2A26; margin: 32px 0 12px;
}
.blog-post-content h3 {
  font-family: 'Playfair Display', serif; font-size: 18px;
  font-weight: 700; color: #2D2A26; margin: 24px 0 10px;
}
.blog-post-content ul, .blog-post-content ol { margin: 12px 0 20px 20px; }
.blog-post-content li { color: #37352F; line-height: 1.7; margin-bottom: 6px; }

/* Amazon Product Box */
.amazon-product-box {
  margin: 28px 0; padding: 20px; background: #fff;
  border-radius: 16px; border: 2px solid #FF9900;
  display: flex; gap: 16px; align-items: center;
}
.amazon-product-box .amazon-icon {
  flex-shrink: 0; width: 40px; height: 40px;
  background: #FF9900; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 14px;
}
.amazon-product-box .amazon-details { flex: 1; min-width: 0; }
.amazon-product-box .amazon-title {
  font-size: 14px; font-weight: 700; color: #2D2A26;
  margin-bottom: 4px; line-height: 1.3;
}
.amazon-product-box .amazon-meta {
  font-size: 12px; color: #8C8A84; margin-bottom: 8px;
}
.amazon-product-box .amazon-btn {
  display: inline-block; padding: 10px 24px; background: #FF9900;
  color: #fff; border-radius: 50px; font-size: 13px; font-weight: 700;
  transition: all 0.3s;
}
.amazon-product-box .amazon-btn:hover { background: #e68a00; transform: translateY(-1px); }
@media (max-width: 480px) {
  .amazon-product-box { flex-direction: column; text-align: center; }
  .amazon-product-box .amazon-btn { width: 100%; text-align: center; }
}

.shop-cta {
  margin: 32px 0; padding: 24px; background: #fff;
  border-radius: 16px; border: 1px solid #E8E4DE; text-align: center;
}
.shop-cta-title { font-family: 'Playfair Display', serif; font-size: 18px; color: #2D2A26; margin-bottom: 6px; }
.shop-cta-desc { font-size: 13px; color: #8C8A84; margin-bottom: 16px; }
.post-nav {
  display: flex; justify-content: space-between; gap: 12px;
  margin-top: 36px; padding-top: 24px; border-top: 1px solid #E8E4DE;
}
.post-nav-link {
  font-size: 13px; color: #5A5650; transition: color 0.3s; max-width: 45%;
}
.post-nav-link:hover { color: #D4A574; }
@media (max-width: 480px) {
  .post-nav { flex-direction: column; gap: 8px; }
  .post-nav-link { max-width: 100%; }
}

/* ===== ABOUT / CONTACT / TERMS / PRIVACY ===== */
.page-section { padding: 90px 16px 48px; }
.page-inner { max-width: 760px; margin: 0 auto; }
.page-title {
  font-family: 'Playfair Display', serif; font-size: clamp(26px, 4vw, 36px);
  font-weight: 700; color: #2D2A26; margin-bottom: 20px;
}
.page-content p { color: #37352F; line-height: 1.8; margin-bottom: 14px; font-size: 15px; }
.page-content h2 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: #2D2A26; margin: 28px 0 10px; }
.contact-form { margin-top: 20px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: #2D2A26; margin-bottom: 6px; }
.form-input, .form-textarea {
  width: 100%; padding: 10px 14px; border: 1px solid #E8E4DE;
  border-radius: 10px; font-size: 15px; font-family: 'Inter', sans-serif;
  transition: border-color 0.3s;
}
.form-input:focus, .form-textarea:focus { outline: none; border-color: #D4A574; }
.form-textarea { min-height: 100px; resize: vertical; }

/* ===== 404 ===== */
.not-found { padding: 100px 16px; text-align: center; min-height: 80vh; display: flex; align-items: center; justify-content: center; }
.not-found-title { font-family: 'Playfair Display', serif; font-size: 72px; font-weight: 700; color: #D4A574; margin-bottom: 12px; }
.not-found-desc { font-size: 16px; color: #8C8A84; margin-bottom: 28px; }

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== 3D TILT (Desktop only) ===== */
@media (hover: hover) and (pointer: fine) {
  .tilt-3d { transform-style: preserve-3d; }
}
