/* ============================================
   Siam Essence Lab - Organic Luxury Theme
   Modern Heritage Style for Thai Market
   ============================================ */

/* CSS Variables */
:root {
  --color-ivory: #FFFDF5;
  --color-forest-green: #1B5E20;
  --color-gold: #D4AF37;
  --color-gold-light: #E8C547;
  --color-green-dark: #0D3D12;
  --color-text-dark: #1A1A1A;
  --color-text-muted: #5A5A5A;
  --color-white: #FFFFFF;
  
  --font-heading: 'Niramit', serif;
  --font-body: 'Prompt', sans-serif;
  
  --shadow-soft: 0 4px 20px rgba(27, 94, 32, 0.08);
  --shadow-medium: 0 8px 40px rgba(27, 94, 32, 0.12);
  --shadow-strong: 0 12px 60px rgba(27, 94, 32, 0.18);
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-ivory);
  color: var(--color-text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Thai Font Loading */
@import url('https://fonts.googleapis.com/css2?family=Niramit:wght@300;400;500;600;700&family=Prompt:wght@300;400;500;600;700&display=swap');

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.4;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.y55rve5s {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Header
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, var(--color-ivory) 0%, rgba(255, 253, 245, 0.95) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.xlumajim {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.bchf8lqd {
  display: flex;
  align-items: center;
  gap: 12px;
}

.zxcanh3b {
  width: 48px;
  height: 48px;
  fill: var(--color-gold);
}

.yijvnt7d {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-forest-green);
  letter-spacing: 0.5px;
}

.phvrs5uk {
  display: flex;
  gap: 32px;
  list-style: none;
}

.g2f9mghg {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-forest-green);
  position: relative;
  padding: 8px 0;
}

.g2f9mghg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: var(--transition-smooth);
}

.g2f9mghg:hover::after,
.g2f9mghg.active::after {
  width: 100%;
}

.g2f9mghg:hover {
  color: var(--color-gold);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-forest-green);
  transition: var(--transition-smooth);
}

/* ============================================
   Hero Section
   ============================================ */
.n72799lb {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  background: linear-gradient(135deg, var(--color-ivory) 0%, rgba(255, 253, 245, 0.8) 50%, rgba(212, 175, 55, 0.05) 100%);
  overflow: hidden;
}

.n72799lb::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(27, 94, 32, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.bjnh36sx {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5c2 0 4 1 5 3l8 14c1 2 1 4 0 6l-8 14c-1 2-3 3-5 3s-4-1-5-3L17 28c-1-2-1-4 0-6l8-14c1-2 3-3 5-3z' fill='%231B5E20' fill-opacity='1' fill-rule='evenodd'/%3E%3C/svg%3E");
  pointer-events: none;
}

.aedzj20n {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.viey6hd2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-forest-green);
  margin-bottom: 32px;
}

.viey6hd2 svg {
  width: 16px;
  height: 16px;
  fill: var(--color-gold);
}

.pti3trxe {
  color: var(--color-forest-green);
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(27, 94, 32, 0.1);
}

.pti3trxe .uj4klbsa {
  color: var(--color-gold);
  position: relative;
}

.umj1quuq {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.v84jdzem {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.zcptqyza {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  position: relative;
  overflow: hidden;
}

.he44hana {
  background: linear-gradient(135deg, var(--color-forest-green) 0%, var(--color-green-dark) 100%);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(27, 94, 32, 0.3);
}

.he44hana::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition-smooth);
}

.he44hana:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(27, 94, 32, 0.4);
}

.he44hana:hover::before {
  left: 100%;
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  color: var(--color-forest-green);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.tw4oo9pj {
  background: transparent;
  border: 2px solid var(--color-forest-green);
  color: var(--color-forest-green);
}

.tw4oo9pj:hover {
  background: var(--color-forest-green);
  color: var(--color-white);
}

/* Hero Image */
.v091t5cq {
  position: relative;
  margin-top: 60px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.a9o7myp2 {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ============================================
   Ingredients Section
   ============================================ */
.cqba54ta {
  padding: 100px 24px;
  background: var(--color-ivory);
  position: relative;
}

.e42os0rx {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.ijwcjzos {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  color: var(--color-forest-green);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.a339mou2 {
  color: var(--color-forest-green);
  margin-bottom: 16px;
}

.can4p97f {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.ltjy5g23 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.x1co5jep {
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  position: relative;
}

.x1co5jep::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-forest-green), var(--color-gold));
}

.x1co5jep:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.v4im45qy {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.urk2gyur {
  padding: 28px;
}

.nng5cxd6 {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(27, 94, 32, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.nng5cxd6 svg {
  width: 28px;
  height: 28px;
  fill: var(--color-gold);
}

.af1mvut6 {
  color: var(--color-forest-green);
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.xbc8w4oc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   Safety Standards Section
   ============================================ */
.cdoa55qz {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--color-ivory) 0%, rgba(27, 94, 32, 0.03) 100%);
  position: relative;
}

.n37jcoor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.u6jzldfq {
  padding: 40px;
}

.u6jzldfq .ijwcjzos {
  margin-bottom: 20px;
}

.u6jzldfq .a339mou2 {
  margin-bottom: 24px;
}

.u6jzldfq p {
  color: var(--color-text-muted);
  margin-bottom: 32px;
  line-height: 1.8;
}

.yqkdgts4 {
  display: grid;
  gap: 20px;
}

.eoyrzd5a {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.igvr36bp {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--color-forest-green), var(--color-green-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.igvr36bp svg {
  width: 24px;
  height: 24px;
  fill: var(--color-gold);
}

.nbxhevsv h4 {
  color: var(--color-forest-green);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.nbxhevsv p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.uw6picw0 {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.uw6picw0 img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.uw6picw0::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(27, 94, 32, 0.3) 100%);
}

/* ============================================
   Contact Section
   ============================================ */
.wk9cp48e {
  padding: 100px 24px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(27, 94, 32, 0.05) 100%);
}

.dakztzh7 {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: 24px;
  padding: 50px;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.kl8fdvsh {
  text-align: center;
  margin-bottom: 40px;
}

.kl8fdvsh .a339mou2 {
  margin-bottom: 12px;
}

.kl8fdvsh p {
  color: var(--color-text-muted);
}

.mdqcw8g2 {
  display: grid;
  gap: 24px;
}

.v3lqv1pc {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.qobc2ddh {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--color-forest-green);
  font-size: 0.95rem;
}

.s3w9obug {
  padding: 16px 20px;
  border: 2px solid rgba(27, 94, 32, 0.15);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-dark);
  background: var(--color-ivory);
  transition: var(--transition-smooth);
}

.s3w9obug:focus {
  outline: none;
  border-color: var(--color-gold);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.s3w9obug::placeholder {
  color: var(--color-text-muted);
}

.mdqcw8g2 .zcptqyza {
  width: 100%;
  margin-top: 8px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--color-forest-green);
  color: var(--color-white);
  padding: 60px 24px 30px;
}

.evjt0r5k {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ye1x8d2r {
  max-width: 400px;
}

.q55ya6q8 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.q55ya6q8 svg {
  width: 40px;
  height: 40px;
  fill: var(--color-gold);
}

.q55ya6q8 span {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
}

.q7i37u1q {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 24px;
}

.q7i37u1q strong {
  color: var(--color-gold);
}

.djntfue6 {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.l7kan27x {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.l7kan27x:hover {
  color: var(--color-gold);
}

.r7wxwumc {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.d14vu5j5 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.ro3v9e3q {
  display: flex;
  gap: 12px;
}

.ro3v9e3q a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.ro3v9e3q a:hover {
  background: var(--color-gold);
}

.ro3v9e3q svg {
  width: 20px;
  height: 20px;
  fill: var(--color-white);
}

/* ============================================
   Modal
   ============================================ */
.ach9q9ci {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.yzvqm9xo {
  background: var(--color-white);
  border-radius: 24px;
  max-width: 500px;
  width: 100%;
  padding: 50px 40px;
  text-align: center;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-strong);
  border: 2px solid var(--color-gold);
}

.e64c6ht9 {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(27, 94, 32, 0.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.e64c6ht9:hover {
  background: var(--color-forest-green);
}

.e64c6ht9 svg {
  width: 20px;
  height: 20px;
  fill: var(--color-forest-green);
}

.cu0i1rmt {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cu0i1rmt svg {
  width: 40px;
  height: 40px;
  fill: var(--color-forest-green);
}

.emceszp5 {
  color: var(--color-forest-green);
  margin-bottom: 16px;
  font-size: 1.75rem;
}

.gcn8s3g7 {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.d299eqxd {
  background: var(--color-forest-green);
  color: var(--color-white);
  padding: 14px 40px;
  border-radius: 50px;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.d299eqxd:hover {
  background: var(--color-green-dark);
  transform: translateY(-2px);
}

/* ============================================
   Legal Pages
   ============================================ */
.c9p9buid {
  min-height: 100vh;
  padding: 120px 24px 60px;
  background: var(--color-ivory);
}

.q369q4bt {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: 20px;
  padding: 50px;
  box-shadow: var(--shadow-soft);
}

.qbjpzq9w {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.qbjpzq9w h1 {
  color: var(--color-forest-green);
  margin-bottom: 12px;
}

.qbjpzq9w p {
  color: var(--color-text-muted);
}

.iivbdvwv {
  margin-bottom: 32px;
}

.iivbdvwv h2 {
  color: var(--color-forest-green);
  font-size: 1.3rem;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(27, 94, 32, 0.1);
}

.iivbdvwv p,
.iivbdvwv li {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.iivbdvwv ul {
  padding-left: 24px;
}

.w5tgpz39 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-forest-green);
  font-weight: 500;
  margin-top: 30px;
}

.w5tgpz39:hover {
  color: var(--color-gold);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 992px) {
  .n37jcoor {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .uw6picw0 {
    order: -1;
  }
  
  .uw6picw0 img {
    height: 350px;
  }
  
  .evjt0r5k {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .phvrs5uk {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-ivory);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    box-shadow: var(--shadow-medium);
  }
  
  .phvrs5uk.active {
    display: flex;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .n72799lb {
    padding-top: 100px;
  }
  
  .a9o7myp2 {
    height: 280px;
  }
  
  .ltjy5g23 {
    grid-template-columns: 1fr;
  }
  
  .dakztzh7 {
    padding: 30px 24px;
  }
  
  .q369q4bt {
    padding: 30px 20px;
  }
  
  .yzvqm9xo {
    padding: 40px 24px;
  }
}

@media (max-width: 480px) {
  .xlumajim {
    padding: 12px 16px;
  }
  
  .yijvnt7d {
    font-size: 1.2rem;
  }
  
  .zxcanh3b {
    width: 40px;
    height: 40px;
  }
  
  .zcptqyza {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
  
  .v84jdzem {
    flex-direction: column;
    align-items: center;
  }
  
  .r7wxwumc {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* Leaf decoration animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

.viey6hd2 {
  animation: float 3s ease-in-out infinite;
}
