*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #f8f6f1;
  color: #1a1a1a;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* TYPOGRAPHY */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.5rem; }
.section-tag {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #894504;
  font-weight: 600;
  margin-bottom: 14px;
  display: inline-block;
  position: relative;
}
.section-tag::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: #894504;
  margin-top: 8px;
}
.section-tag.light { color: #a85d1a; }
.section-tag.light::after { background: #a85d1a; }
.section-title { margin-bottom: 16px; }
.section-title em { font-style: normal; color: #894504; }
.section-sub {
  font-size: 1.05rem;
  color: #666;
  max-width: 600px;
  line-height: 1.8;
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 6px;
  font-weight: 600; font-size: 0.9rem;
  border: none; cursor: pointer;
  transition: all 0.3s; font-family: inherit;
}
.btn-primary {
  background: #894504; color: #fff;
}
.btn-primary:hover { background: #723a03; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(137,69,4,0.3); }
.btn-dark {
  background: #1a1a1a; color: #fff;
}
.btn-dark:hover { background: #333; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.btn-outline {
  background: transparent; color: #1a1a1a;
  border: 1.5px solid rgba(0,0,0,0.15);
}
.btn-outline:hover { border-color: #894504; color: #894504; transform: translateY(-2px); }
.btn-outline-light {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline-light:hover { border-color: #a85d1a; color: #a85d1a; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 18px 0;
  background: rgba(26,26,26,0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  padding: 10px 0;
  box-shadow: 0 12px 35px rgba(0,0,0,0.18);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  backdrop-filter: blur(12px);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1rem; color: #fff;
}
.nav.scrolled .nav-logo { color: #1a1a1a; }
.nav-logo-icon {
  width: 36px; height: 36px;
  background: #894504; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 900; color: #fff;
  overflow: hidden;
}
.nav-logo-icon .site-logo-img { width: 100%; height: 100%; object-fit: cover; }
.lang-switch {
  background: rgba(255,255,255,0.12); color: #fff;
  border: 1px solid rgba(255,255,255,0.25); border-radius: 6px;
  padding: 6px 6px; font-size: 0.7rem; font-weight: 700; font-family: inherit;
  cursor: pointer; outline: none;
}
.lang-switch option { color: #1a1a1a; }
.nav.scrolled .lang-switch { background: rgba(0,0,0,0.06); color: #1a1a1a; border-color: rgba(0,0,0,0.2); }
.nav-logo span { color: #894504; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 0.82rem; font-weight: 500;
  color: rgba(255,255,255,0.8);
  position: relative; transition: color 0.3s;
}
.nav.scrolled .nav-links a { color: rgba(0,0,0,0.7); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: #894504;
  transition: width 0.3s;
}
.nav-links a:hover { color: #894504; }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: #894504; }
.nav-links a.active::after { width: 100%; }
.nav-donate {
  background: #894504 !important; color: #fff !important;
  padding: 10px 22px; border-radius: 6px;
  font-weight: 700 !important; font-size: 0.82rem !important;
  transition: background 0.3s, transform 0.3s !important;
}
.nav-donate::after { display: none !important; }
.nav-donate:hover { background: #723a03 !important; transform: scale(1.04); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-hamburger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: 0.3s; }
.nav.scrolled .nav-hamburger span { background: #1a1a1a; }

/* PAGE HERO */
.page-hero {
  position: relative; padding: 160px 0 80px;
  background: #1a1a1a; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.45;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(2.4rem, 5vw, 3.8rem); max-width: 700px; }
.page-hero p { color: rgba(255,255,255,0.6); margin-top: 12px; max-width: 560px; font-size: 1.05rem; }
.page-hero-breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-bottom: 20px;
}
.page-hero-breadcrumb a { color: #a85d1a; }
.page-hero-breadcrumb span { color: rgba(255,255,255,0.4); }

/* SECTIONS */
section { padding: 90px 0; }
.section-dark {
  background: #1a1a1a; color: #fff;
}
.section-dark .section-sub { color: rgba(255,255,255,0.55); }
.section-gold {
  background: #894504; color: #fff;
}

/* SECTION TRANSITIONS */
.transition-diagonal {
  position: relative;
}
.transition-diagonal::before {
  content: '';
  position: absolute;
  top: -60px; left: 0; right: 0;
  height: 120px;
  background: inherit;
  clip-path: polygon(0 0, 100% 60%, 100% 100%, 0 40%);
  z-index: 1;
}
.section-divider {
  position: relative;
}
.section-divider-top {
  margin-top: -60px;
  padding-top: 120px;
}
.section-divider-bottom {
  margin-bottom: -60px;
  padding-bottom: 120px;
}
.divider-wave-top {
  position: relative;
}
.divider-wave-top::before {
  content: '';
  position: absolute;
  top: -50px; left: 0; right: 0;
  height: 100px;
  background: inherit;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath d='M0,50 C360,100 720,0 1080,50 C1260,75 1350,50 1440,50 L1440,100 L0,100 Z'/%3E%3C/svg%3E");
  mask-size: 100% 100%;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath d='M0,50 C360,100 720,0 1080,50 C1260,75 1350,50 1440,50 L1440,100 L0,100 Z'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
}

/* HERO HOME */
.hero-home {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: #1a1a1a; overflow: hidden;
}
.hero-home-slides {
  position: absolute; inset: 0; z-index: 0;
}
.hero-home-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  animation: heroFade 36s infinite;
}
.hero-home-slide:nth-child(1) { animation-delay: 0s; }
.hero-home-slide:nth-child(2) { animation-delay: 6s; }
.hero-home-slide:nth-child(3) { animation-delay: 12s; }
.hero-home-slide:nth-child(4) { animation-delay: 18s; }
.hero-home-slide:nth-child(5) { animation-delay: 24s; }
.hero-home-slide:nth-child(6) { animation-delay: 30s; }
@keyframes heroFade {
  0%, 100% { opacity: 0; transform: scale(1.05); }
  4% { opacity: 0.5; transform: scale(1); }
  16.7% { opacity: 0.5; transform: scale(1); }
  20.7% { opacity: 0; transform: scale(1.05); }
}
.hero-home-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.35) 0%, rgba(26,26,26,0.05) 100%);
  z-index: 1;
}
.hero-home .container { position: relative; z-index: 1; width: 100%; }
.hero-home-content { max-width: 720px; }
.hero-home-badge {
  display: inline-block;
  background: rgba(137,69,4,0.15);
  border: 1px solid rgba(255,255,255,0.6);
  padding: 8px 20px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 500;
  color: #fff; margin-bottom: 24px;
  letter-spacing: 1px;
}
.hero-home h1 { color: #fff; }
.hero-home h1 .highlight { color: #a85d1a; }
.hero-home p { color: rgba(255,255,255,0.6); max-width: 540px; margin: 20px 0 36px; font-size: 1.1rem; line-height: 1.8; }
.hero-home-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-home-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.3);
}
.hero-home-scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent); }

/* IMPACT BAR */
.impact-bar { background: #fff; border-bottom: 1px solid #eee; }
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.impact-item {
  padding: 13px 28px; text-align: center;
  border-right: 1px solid #eee;
  transition: background 0.3s;
}
.impact-item:last-child { border-right: none; }
.impact-item:hover { background: #faf8f5; }
.impact-number {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900; display: block; color: #1a1a1a;
}
.impact-number .gold { color: #894504; }
.impact-label { font-size: 0.82rem; color: #888; margin-top: 4px; }

/* ABOUT SPLIT */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image-wrap {
  position: relative; border-radius: 16px; overflow: hidden;
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
}
.about-image-wrap::before {
  content: ''; position: absolute; inset: 0;
  border: 2px solid rgba(137,69,4,0.2); border-radius: 16px; pointer-events: none; z-index: 1;
}
.about-image-accent {
  position: absolute; top: -16px; right: -16px;
  width: 100px; height: 100px;
  border: 2px solid rgba(137,69,4,0.15);
  border-radius: 12px; z-index: -1;
}

/* STORE */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}
.product-card {
  background: #fff; border-radius: 14px; overflow: hidden;
  border: 1px solid #eee;
  transition: all 0.4s; cursor: pointer;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: #894504;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.product-card-img {
  aspect-ratio: 1; overflow: hidden;
  background-size: cover; background-position: center;
  position: relative;
}
.product-card-tag {
  position: absolute; top: 14px; left: 14px;
  background: #894504; color: #fff;
  font-size: 0.65rem; font-weight: 700; padding: 4px 12px;
  border-radius: 50px; text-transform: uppercase; letter-spacing: 1px;
}
.product-card-body { padding: 22px; }
.product-card-cat {
  font-size: 0.65rem; color: #894504;
  text-transform: uppercase; letter-spacing: 2px; font-weight: 600;
}
.product-card-title { font-size: 1.1rem; font-weight: 600; margin: 8px 0 8px; }
.product-card-desc { font-size: 0.82rem; color: #888; line-height: 1.6; }
.product-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; padding-top: 16px; border-top: 1px solid #f0f0f0; }
.product-card-price { font-size: 1.2rem; font-weight: 700; color: #894504; }
.product-card-rfq {
  padding: 7px 16px; background: transparent;
  border: 1px solid #894504; color: #894504;
  border-radius: 6px; font-size: 0.72rem; font-weight: 600; cursor: pointer;
  transition: all 0.3s; font-family: inherit;
}
.product-card-rfq:hover { background: #894504; color: #fff; }

/* NEWS */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}
.news-card {
  background: #fff; border-radius: 14px; overflow: hidden;
  border: 1px solid #eee;
  transition: all 0.4s;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}
.news-card-img {
  aspect-ratio: 16/9; overflow: hidden;
  background-size: cover; background-position: center;
}
.news-card-body { padding: 24px; }
.news-card-date {
  font-size: 0.72rem; color: #894504; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
}
.news-card-title {
  font-size: 1.15rem; font-weight: 600; margin: 10px 0 10px;
  line-height: 1.3;
}
.news-card-excerpt { font-size: 0.88rem; color: #888; line-height: 1.7; }
.news-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 600; color: #894504; margin-top: 14px;
  transition: gap 0.3s;
}
.news-card-link:hover { gap: 10px; }

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
.team-card { text-align: center; }
.team-card-img {
  width: 100%; aspect-ratio: 1;
  border-radius: 14px; overflow: hidden;
  background-size: cover; background-position: center;
  margin-bottom: 16px;
}
.team-card h4 { font-size: 1.05rem; font-weight: 600; }
.team-card p { font-size: 0.82rem; color: #888; margin-top: 4px; }

/* TESTIMONIALS */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; margin-top: 40px; }
.testimonial-card {
  background: rgba(255,255,255,0.05); padding: 32px; border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 18px; right: 24px;
  font-size: 3.5rem; color: rgba(168,93,26,0.15);
  font-family: 'Playfair Display', serif; line-height: 1;
}
.testimonial-text { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(168,93,26,0.2); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; color: #a85d1a;
}
.testimonial-name { font-weight: 600; font-size: 0.85rem; color: #fff; }
.testimonial-role { font-size: 0.72rem; color: rgba(255,255,255,0.4); }

/* DONATE SECTION */
.donate-section {
  text-align: center; background: #fff;
}
.donate-section p { margin: 0 auto 28px; }
.donate-options { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin: 28px 0 32px; }
.donate-amount {
  padding: 12px 24px; border-radius: 8px;
  border: 1.5px solid #ddd;
  background: #fff; color: #1a1a1a; font-size: 1rem;
  font-weight: 600; cursor: pointer; transition: all 0.3s; font-family: inherit;
}
.donate-amount:hover, .donate-amount.selected { border-color: #894504; background: #f5ede6; color: #894504; }

/* NEWSLETTER */
.newsletter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.newsletter-form { display: flex; gap: 12px; }
.newsletter-form input {
  flex: 1; padding: 14px 18px; border-radius: 6px;
  border: 1px solid #ddd;
  background: #fff; color: #1a1a1a; font-size: 0.9rem;
  font-family: inherit; transition: border-color 0.3s;
}
.newsletter-form input:focus { outline: none; border-color: #894504; }
.newsletter-form input::placeholder { color: #aaa; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form input, .contact-form textarea {
  padding: 14px 18px; border-radius: 6px;
  border: 1px solid #ddd; font-family: inherit; font-size: 0.9rem;
  background: #fff; transition: border-color 0.3s;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: #894504; }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-info-card { background: #fff; padding: 32px; border-radius: 14px; border: 1px solid #eee; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 20px; }
.contact-info-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: #f5ede6; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.contact-info-item h4 { font-size: 0.9rem; font-weight: 600; }
.contact-info-item p { font-size: 0.85rem; color: #888; }

/* FOOTER */
footer { background: #111; color: #fff; padding: 64px 0 28px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 40px; }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.footer-brand .footer-logo-icon { width: 32px; height: 32px; background: #894504; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 900; color: #fff; overflow: hidden; }
.footer-brand .footer-logo-icon .site-logo-img { width: 100%; height: 100%; object-fit: cover; }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.85rem; margin-top: 14px; max-width: 300px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; transition: all 0.3s; color: rgba(255,255,255,0.4);
}
.footer-social a:hover { border-color: #894504; color: #894504; background: rgba(137,69,4,0.1); }
.footer-col h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 18px; color: rgba(255,255,255,0.8); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.4); transition: color 0.3s; }
.footer-col a:hover { color: #894504; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: #894504; }

/* MODALS */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.7);
  display: none; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff; border-radius: 16px; padding: 40px;
  max-width: 500px; width: 90%; position: relative;
  max-height: 90vh; overflow-y: auto;
}
.modal-close {
  position: absolute; top: 18px; right: 18px;
  background: none; border: none; color: #aaa; font-size: 1.3rem;
  cursor: pointer; transition: color 0.3s; font-family: inherit;
}
.modal-close:hover { color: #1a1a1a; }
.modal h3 { font-size: 1.4rem; margin-bottom: 6px; }
.modal p { color: #888; margin-bottom: 24px; font-size: 0.88rem; }
.modal .donate-options { margin-bottom: 20px; }
.modal .donate-amount { padding: 10px 20px; font-size: 0.9rem; }
.modal-donate-btn {
  width: 100%; padding: 14px; background: #894504; color: #fff;
  border: none; border-radius: 6px; font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: background 0.3s; font-family: inherit;
}
.modal-donate-btn:hover { background: #723a03; }

/* PRODUCT MODAL */
.pmodal-body { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.pmodal-img { aspect-ratio: 1; border-radius: 10px; overflow: hidden; background-size: cover; background-position: center; background-color: #f5f5f5; }
.pmodal-info .pm-cat { font-size: 0.65rem; color: #894504; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; }
.pmodal-info h4 { font-size: 1.3rem; margin: 8px 0; }
.pmodal-info .pm-price { font-size: 1.3rem; color: #894504; font-weight: 700; margin: 8px 0 12px; }
.pm-sizes { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.pm-colors { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.pm-color-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border: 1px solid #ddd; border-radius: 50px;
  background: #fff; cursor: pointer; font-family: inherit; font-size: 0.8rem; font-weight: 600; color: #333;
  transition: border-color 0.2s, background 0.2s;
}
.pm-color-thumb { width: 18px; height: 18px; border-radius: 50%; background-size: cover; background-position: center; border: 1px solid rgba(0,0,0,0.1); }
.pm-color-btn:hover { border-color: #894504; }
.pm-color-btn.selected { border-color: #894504; background: #fbf2e7; }
.pm-size-btn {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 8px 14px; border: 1px solid #ddd; border-radius: 8px;
  background: #fff; cursor: pointer; font-family: inherit; font-size: 0.82rem; font-weight: 600; color: #333;
  transition: border-color 0.2s, background 0.2s;
}
.pm-size-btn span { font-size: 0.72rem; color: #894504; font-weight: 700; }
.pm-size-btn:hover { border-color: #894504; }
.pm-size-btn.selected { border-color: #894504; background: #fbf2e7; }
.cart-item-size { font-size: 0.75rem; color: #894504; font-weight: 600; margin-top: 2px; }
.pmodal-info .pm-desc { color: #888; line-height: 1.7; font-size: 0.9rem; margin-bottom: 14px; }
.pmodal-info .pm-benefits { font-size: 0.88rem; color: #555; margin-bottom: 20px; padding-left: 18px; }
.pmodal-info .pm-benefits li { margin-bottom: 4px; }

/* SHOP TOOLBAR */
.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-bottom: 28px;
}
.shop-search { position: relative; flex: 1; min-width: 240px; max-width: 420px; }
.shop-search input {
  width: 100%; padding: 13px 44px 13px 18px;
  border: 1px solid #ddd; border-radius: 50px;
  background: #fff; font-size: 0.88rem; color: #1a1a1a;
  font-family: inherit; transition: border-color 0.3s, box-shadow 0.3s;
}
.shop-search input:focus { outline: none; border-color: #894504; box-shadow: 0 0 0 3px rgba(137,69,4,0.1); }
.shop-search input::placeholder { color: #aaa; }
.shop-search-icon {
  position: absolute; top: 50%; right: 18px; transform: translateY(-50%);
  color: #894504; font-size: 0.95rem; pointer-events: none;
}
.shop-sort { display: flex; align-items: center; gap: 10px; }
.shop-sort label { font-size: 0.78rem; color: #888; font-weight: 500; }
.shop-sort select {
  padding: 12px 38px 12px 16px;
  border: 1px solid #ddd; border-radius: 50px; background: #fff;
  font-size: 0.85rem; color: #1a1a1a; font-family: inherit; cursor: pointer;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23894504' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  transition: border-color 0.3s;
}
.shop-sort select:focus { outline: none; border-color: #894504; }
.shop-results { font-size: 0.8rem; color: #888; margin-bottom: 20px; }
.shop-results strong { color: #894504; }
.shop-empty { text-align: center; padding: 60px 20px; color: #888; }
.shop-empty h4 { font-size: 1.1rem; color: #1a1a1a; margin-bottom: 8px; }
.shop-empty p { font-size: 0.88rem; }

/* PRODUCT CARD ACTIONS */
.product-card-actions { display: flex; gap: 10px; margin-top: 14px; }
.product-card-add {
  flex: 1; padding: 11px 16px;
  background: #894504; color: #fff; border: none; border-radius: 8px;
  font-size: 0.78rem; font-weight: 600; cursor: pointer;
  font-family: inherit; transition: all 0.3s;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
}
.product-card-add:hover { background: #723a03; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(137,69,4,0.3); }
.product-card-quick {
  width: 42px; padding: 11px 0;
  background: transparent; color: #894504; border: 1.5px solid #894504;
  border-radius: 8px; font-size: 0.9rem; cursor: pointer;
  transition: all 0.3s; font-family: inherit;
}
.product-card-quick:hover { background: #894504; color: #fff; }

/* CART DRAWER */
.cart-toggle {
  position: relative; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: #fff; transition: background 0.3s, color 0.3s;
}
.cart-toggle:hover { background: rgba(255,255,255,0.15); }
.nav.scrolled .cart-toggle { color: #1a1a1a; }
.nav.scrolled .cart-toggle:hover { background: rgba(0,0,0,0.05); }
.cart-badge {
  position: absolute; top: 2px; right: 0;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: #a85d1a; color: #fff; border-radius: 50px;
  font-size: 0.65rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s;
}
.cart-badge.pop { animation: cartPop 0.3s ease; }
@keyframes cartPop { 0% { transform: scale(1); } 50% { transform: scale(1.5); } 100% { transform: scale(1); } }

.cart-overlay {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(0,0,0,0.6); opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s; backdrop-filter: blur(4px);
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 3001;
  width: 400px; max-width: 92vw;
  background: #fff; box-shadow: -20px 0 60px rgba(0,0,0,0.2);
  display: flex; flex-direction: column;
  transform: translateX(105%); transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; border-bottom: 1px solid #eee;
}
.cart-header h3 { font-size: 1.15rem; font-weight: 700; }
.cart-header-close { background: none; border: none; font-size: 1.2rem; color: #aaa; cursor: pointer; transition: color 0.3s; font-family: inherit; }
.cart-header-close:hover { color: #1a1a1a; }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid #f0f0f0; }
.cart-item-img {
  width: 72px; height: 72px; min-width: 72px; border-radius: 10px;
  background-size: cover; background-position: center;
  border: 1px solid #eee;
}
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: 0.9rem; font-weight: 600; line-height: 1.3; }
.cart-item-price { font-size: 0.85rem; color: #894504; font-weight: 700; margin-top: 4px; }
.cart-item-controls { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.cart-qty { display: inline-flex; align-items: center; border: 1px solid #ddd; border-radius: 50px; overflow: hidden; }
.cart-qty button {
  width: 28px; height: 28px; background: none; border: none; cursor: pointer;
  font-size: 0.9rem; color: #1a1a1a; transition: background 0.2s; font-family: inherit;
}
.cart-qty button:hover { background: #f5f0ea; }
.cart-qty span { min-width: 28px; text-align: center; font-size: 0.8rem; font-weight: 600; }
.cart-item-remove { background: none; border: none; color: #bbb; font-size: 0.85rem; cursor: pointer; transition: color 0.3s; font-family: inherit; }
.cart-item-remove:hover { color: #c0392b; }
.cart-empty { text-align: center; padding: 50px 20px; color: #999; }
.cart-empty-icon { font-size: 2.4rem; margin-bottom: 12px; opacity: 0.5; }
.cart-empty h4 { font-size: 1rem; color: #1a1a1a; margin-bottom: 6px; }
.cart-empty p { font-size: 0.85rem; margin-bottom: 20px; }
.cart-footer {
  padding: 20px 24px; border-top: 1px solid #eee; background: #fafaf8;
}
.cart-subtotal { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; font-size: 0.9rem; color: #555; }
.cart-subtotal strong { font-size: 1.15rem; color: #1a1a1a; }
.cart-note { font-size: 0.72rem; color: #999; margin-top: 10px; text-align: center; }
.cart-checkout { width: 100%; }

/* RELATED PRODUCTS */
.related-section { margin-top: 28px; border-top: 1px solid #f0f0f0; padding-top: 24px; }
.related-section h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 16px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.related-card {
  border: 1px solid #eee; border-radius: 10px; overflow: hidden;
  cursor: pointer; transition: all 0.3s; background: #fff;
}
.related-card:hover { border-color: #894504; box-shadow: 0 8px 24px rgba(0,0,0,0.06); transform: translateY(-2px); }
.related-card-img { aspect-ratio: 1; background-size: cover; background-position: center; }
.related-card-body { padding: 12px 14px; }
.related-card-body h5 { font-size: 0.8rem; font-weight: 600; margin-bottom: 4px; line-height: 1.3; }
.related-card-body .related-price { font-size: 0.8rem; color: #894504; font-weight: 700; }
.related-card-add { margin-top: 8px; padding: 7px 0; width: 100%; background: #f5ede6; color: #894504; border: none; border-radius: 6px; font-size: 0.72rem; font-weight: 600; cursor: pointer; transition: all 0.3s; font-family: inherit; }
.related-card-add:hover { background: #894504; color: #fff; }

/* TOAST */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(100px);
  background: #1a1a1a; color: #fff; padding: 14px 28px;
  border-radius: 50px; font-size: 0.85rem; font-weight: 500;
  z-index: 4000; opacity: 0; transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3); white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast.gold { background: #894504; }
.toast .toast-cart { background: none; border: none; color: #a85d1a; font-size: 0.85rem; font-weight: 700; cursor: pointer; font-family: inherit; padding: 0; margin-left: 8px; }
.toast.gold .toast-cart { color: #fff; text-decoration: underline; }

/* CATEGORY FILTERS */
.cat-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.cat-btn {
  padding: 8px 20px; border-radius: 50px;
  border: 1px solid #ddd; background: #fff; color: #888;
  font-size: 0.78rem; font-weight: 500; cursor: pointer;
  transition: all 0.3s; font-family: inherit;
}
.cat-btn.active, .cat-btn:hover { background: #894504; color: #fff; border-color: #894504; }
.cat-btn .cat-count { opacity: 0.6; font-size: 0.7rem; margin-left: 4px; }

/* VALUES LIST */
.values-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 20px; }
.values-list li { list-style: none; padding: 5px 0; display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: #555; }
.values-list li::before { content: '→'; color: #894504; font-weight: 700; }

/* ANIMATIONS */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* PARTNERS */
.partner-grid { display: flex; flex-wrap: wrap; gap: 32px; justify-content: center; align-items: center; margin-top: 36px; }
.partner-item {
  padding: 20px 32px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 10px;
  font-weight: 500; font-size: 0.85rem; color: rgba(255,255,255,0.5);
  transition: all 0.3s; text-align: center;
}
.partner-item:hover { border-color: #a85d1a; color: #a85d1a; }

/* PARTNER LOGOS LIGHT */
.partner-grid-light { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; align-items: center; }
.partner-logo {
  padding: 16px 28px; background: #fff;
  border: 1px solid #eee; border-radius: 10px;
  font-weight: 600; font-size: 0.8rem; color: #888;
  transition: all 0.3s; text-align: center;
  min-width: 140px;
}
.partner-logo:hover { border-color: #894504; color: #894504; box-shadow: 0 4px 20px rgba(0,0,0,0.04); }

/* SEAL / REGISTRATION BADGE */
.seal {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 20px;
  border: 2px solid #894504;
  border-radius: 10px;
  background: rgba(137,69,4,0.04);
  margin-top: 12px;
}
.seal-icon {
  width: 44px; height: 44px; min-width: 44px;
  border: 2px solid #894504;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900; color: #894504;
  position: relative;
}
.seal-icon::before {
  content: '';
  position: absolute; inset: 3px;
  border: 1px solid #894504;
  border-radius: 50%;
  opacity: 0.3;
}
.seal-text { font-size: 0.75rem; color: #888; line-height: 1.4; }
.seal-text strong { color: #555; font-size: 0.8rem; }

/* SEAL FOOTER VARIANT */
.seal-footer {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  margin-top: 14px;
}
.seal-footer-icon {
  width: 36px; height: 36px; min-width: 36px;
  border: 1.5px solid #a85d1a;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 900; color: #a85d1a;
}
.seal-footer-text { font-size: 0.7rem; color: rgba(255,255,255,0.35); line-height: 1.3; }
.seal-footer-text strong { color: rgba(255,255,255,0.6); }

/* BOARD */
.board-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 24px; margin-top: 36px; }
.board-card {
  background: #fff; border: 1px solid #eee; border-radius: 14px;
  padding: 28px; text-align: center; transition: all 0.3s;
}
.board-card:hover { border-color: #894504; box-shadow: 0 8px 30px rgba(0,0,0,0.04); }
.board-card-img {
  width: 100px; height: 100px; border-radius: 50%;
  margin: 0 auto 16px; overflow: hidden;
  background-size: cover; background-position: center;
  border: 3px solid #f5ede6;
}
.board-card h4 { font-size: 1rem; font-weight: 600; }
.board-card .role { font-size: 0.8rem; color: #894504; font-weight: 500; margin: 4px 0 8px; }
.board-card p { font-size: 0.82rem; color: #888; line-height: 1.6; }
.board-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px; font-size: 0.82rem; font-weight: 600;
  color: #894504; transition: gap 0.3s;
}
.board-card-link span { transition: transform 0.3s; }
.board-card-link:hover { gap: 10px; }
.board-card-link:hover span { transform: translateX(2px); }

/* DID YOU KNOW */
.dyk-grid { display: grid; grid-template-columns: 420px 1fr; gap: 56px; align-items: center; }
.dyk-image { border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 24px 60px rgba(0,0,0,0.35); }
.dyk-image img { width: 100%; height: 100%; object-fit: cover; }
.dyk-list { list-style: none; margin: 8px 0 28px; }
.dyk-list li {
  position: relative; padding: 10px 0 10px 34px;
  font-size: 0.94rem; color: rgba(255,255,255,0.7); line-height: 1.7;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dyk-list li:last-child { border-bottom: none; }
.dyk-list li::before {
  content: '\2713'; position: absolute; left: 0; top: 10px;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(168,93,26,0.18); color: #a85d1a;
  font-size: 0.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.dyk-list strong { color: #fff; }
.dyk-logo { width: 130px; height: 130px; object-fit: contain; border-radius: 12px; background: #fff; padding: 10px; box-shadow: 0 8px 30px rgba(0,0,0,0.3); }

/* VIDEO SECTION */
.video-wrap {
  position: relative; max-width: 900px; margin: 0 auto;
  aspect-ratio: 16 / 9; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.video-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* PAGE HEADER SEPARATOR */
.page-separator { height: 4px; background: linear-gradient(90deg, #894504, #b86a2a, #894504); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .about-split { grid-template-columns: 1fr; gap: 36px; }
  .newsletter-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .dyk-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,0.98); padding: 24px;
    gap: 18px; align-items: flex-start;
    border-bottom: 1px solid #eee;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  }
  .nav-links.open a { color: #1a1a1a !important; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-item:nth-child(2) { border-right: none; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .hero-home-actions { flex-direction: column; align-items: flex-start; }
  .newsletter-form { flex-direction: column; }
  section { padding: 60px 0; }
  .page-hero { padding: 120px 0 60px; }
  .pmodal-body { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .impact-item { padding: 8px 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .donate-options { gap: 8px; }
  .donate-amount { padding: 10px 16px; font-size: 0.85rem; }
}
