* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #FF6B6B;
  --primary-dark: #EE5A5A;
  --secondary: #4ECDC4;
  --accent: #FFE66D;
  --dark: #2C3E50;
  --light: #F7F9FC;
  --text: #333;
  --white: #fff;
  --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

body {
  font-family: 'Sarabun', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--light);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.ujmn3vt1 {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 25px;
}

/* Loader */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.loader {
  width: 80px;
  height: 80px;
  border: 6px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Header */
header {
  background: var(--white);
  padding: 1.5rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ehw8kplw {
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.twfsaesz {
  display: flex;
  gap: 2.5rem;
}

.twfsaesz a {
  font-weight: 500;
  color: var(--dark);
  position: relative;
  transition: color 0.3s;
}

.twfsaesz a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

.twfsaesz a:hover {
  color: var(--primary);
}

.twfsaesz a:hover::after {
  width: 100%;
}

.f0m2a39v {
  position: relative;
  font-size: 1.5rem;
  cursor: pointer;
}

.rqedfnhz {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.7rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Hero */
.b7ph0kzv {
  background: var(--gradient);
  padding: 6rem 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.b7ph0kzv::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.tewvd8r4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.akl9s6w6 h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.akl9s6w6 p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.w0jjb2cl {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.w0jjb2cl:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.fdaj2wky {
  text-align: center;
  font-size: 15rem;
  line-height: 1;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Stats Bar */
.mbw8yrqy {
  background: var(--white);
  padding: 2rem 0;
  margin-top: -3rem;
  position: relative;
  z-index: 2;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.c9puymp0 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.mohy4sun h3 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.mohy4sun p {
  color: #666;
  font-size: 0.95rem;
}

/* Categories */
.yh0lppv7 {
  padding: 5rem 0;
}

.ifmdqum7 {
  text-align: center;
  margin-bottom: 3rem;
}

.ifmdqum7 h2 {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.ifmdqum7 p {
  color: #666;
  font-size: 1.1rem;
}

.g4sq56sy {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.fk9jec5e {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  border: 2px solid transparent;
}

.fk9jec5e:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border-color: var(--secondary);
}

.mrdqwvic {
  font-size: 5rem;
  margin-bottom: 1rem;
}

.fk9jec5e h3 {
  color: var(--dark);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.fk9jec5e p {
  color: #888;
  font-size: 0.9rem;
}

/* Featured Products */
.e8rrsprl {
  background: var(--white);
  padding: 5rem 0;
}

.je0p2a19 {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.mr6qb560 {
  padding: 0.8rem 2rem;
  border: 2px solid var(--secondary);
  background: var(--white);
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.mr6qb560:hover,
.mr6qb560.ktxow4uk {
  background: var(--secondary);
  color: var(--white);
}

.tin0dh6l {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.fau6qgx0 {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.fau6qgx0:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.rtfg97i1 {
  height: 220px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: relative;
}

.xgnp95lr {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary);
  color: var(--white);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.a8eab1nt {
  padding: 1.5rem;
}

.a8eab1nt h3 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.ivz9fxn5 {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.h39k0k2y {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rknotuf2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}

.rknotuf2 old {
  font-size: 0.9rem;
  color: #aaa;
  text-decoration: line-through;
  margin-left: 0.5rem;
}

.zqi5tlx2 {
  background: var(--secondary);
  color: var(--white);
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.zqi5tlx2:hover {
  background: #3DBDB5;
}

/* Why Choose Us */
.rjjyn6bq {
  padding: 5rem 0;
  background: var(--gradient);
  color: var(--white);
}

.rjjyn6bq .ifmdqum7 h2 {
  color: var(--white);
}

.rjjyn6bq .ifmdqum7 p {
  opacity: 0.9;
}

.trq7a0fo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.m4lmt9ow {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s;
}

.m4lmt9ow:hover {
  transform: scale(1.05);
}

.kmwqi8y9 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.m4lmt9ow h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.m4lmt9ow p {
  opacity: 0.9;
  font-size: 0.95rem;
}

/* Testimonials */
.eswvsy4e {
  padding: 5rem 0;
  background: var(--light);
}

.soxxw52w {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.o96wbjn5 {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  position: relative;
}

.o96wbjn5::before {
  content: '"';
  font-size: 5rem;
  color: var(--secondary);
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.ntvg4411 {
  font-style: italic;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.qq9s6qwb {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bng6np78 {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.k9krdrit h4 {
  color: var(--dark);
  font-size: 1rem;
}

.k9krdrit span {
  color: #888;
  font-size: 0.85rem;
}

.jif4aaw3 {
  color: #FFC107;
  margin-top: 0.5rem;
}

/* CTA Section */
.yma7a472 {
  padding: 5rem 0;
  background: var(--white);
  text-align: center;
}

.phmodexh {
  background: var(--gradient);
  border-radius: 30px;
  padding: 4rem 2rem;
  color: var(--white);
}

.phmodexh h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.phmodexh p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.w9isfc6g {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 1rem;
}

.w9isfc6g input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  outline: none;
}

.w9isfc6g button {
  background: var(--accent);
  color: var(--dark);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s;
}

.w9isfc6g button:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.mavz1cgq {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.t6scymp0 p {
  color: #aaa;
  margin-top: 1rem;
  line-height: 1.8;
}

.icxqrge1 {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.icxqrge1 a {
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: background 0.3s, transform 0.3s;
}

.icxqrge1 a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.v1qmf85l h4,
.dec9qiyf h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--secondary);
}

.v1qmf85l ul li {
  margin-bottom: 0.8rem;
}

.v1qmf85l a {
  color: #aaa;
  transition: color 0.3s;
}

.v1qmf85l a:hover {
  color: var(--white);
}

.dec9qiyf ul li {
  margin-bottom: 1rem;
  color: #aaa;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.vyh2hzt7 {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #888;
}

/* Thank You Modal */
.thank-you-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.thank-you-modal.active {
  opacity: 1;
  visibility: visible;
}

.thank-you-content {
  background: var(--white);
  padding: 3rem;
  border-radius: 25px;
  text-align: center;
  max-width: 450px;
  margin: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.thank-you-modal.active .thank-you-content {
  transform: scale(1);
}

.thank-you-icon {
  font-size: 5rem;
  margin-bottom: 1rem;
  animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.thank-you-content h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.thank-you-content p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.thank-you-close {
  background: var(--gradient);
  color: var(--white);
  border: none;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.thank-you-close:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 992px) {
  .tewvd8r4 {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .fdaj2wky {
    font-size: 10rem;
  }

  .c9puymp0 {
    grid-template-columns: repeat(2, 1fr);
  }

  .g4sq56sy {
    grid-template-columns: repeat(2, 1fr);
  }

  .trq7a0fo {
    grid-template-columns: 1fr;
  }

  .mavz1cgq {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .twfsaesz {
    display: none;
  }

  .akl9s6w6 h1 {
    font-size: 2.5rem;
  }

  .g4sq56sy {
    grid-template-columns: 1fr;
  }

  .w9isfc6g {
    flex-direction: column;
  }

  .mavz1cgq {
    grid-template-columns: 1fr;
  }

  .thank-you-content {
    padding: 2rem;
    margin: 15px;
  }

  .thank-you-icon {
    font-size: 4rem;
  }

  .thank-you-content h2 {
    font-size: 1.5rem;
  }
}
