/* ===== CSS Reset & Variables ===== */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    :root {
      --orange: #E8913A;
      --orange-dark: #D07A2A;
      --orange-light: #F5C896;
      --brown-dark: #3B2314;
      --brown: #5C3A1E;
      --brown-medium: #8B5E3C;
      --brown-light: #C49A6C;
      --cream: #FFF8F0;
      --cream-dark: #F5EDE3;
      --white: #FFFFFF;
      --text-dark: #2D1B0E;
      --text-body: #5A4A3A;
      --text-muted: #8A7A6A;
      --shadow-sm: 0 2px 8px rgba(59,35,20,0.08);
      --shadow-md: 0 4px 20px rgba(59,35,20,0.12);
      --shadow-lg: 0 8px 40px rgba(59,35,20,0.16);
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 20px;
      --transition: 0.3s ease;
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Poppins', sans-serif;
      color: var(--text-body);
      background: var(--white);
      overflow-x: hidden;
      line-height: 1.7;
    }
    h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; color: var(--text-dark); line-height: 1.3; }
    a { text-decoration: none; color: inherit; transition: var(--transition); }
    img { max-width: 100%; display: block; }
    ul { list-style: none; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
    .section-padding { padding: 100px 0; }
    .section-header { text-align: center; margin-bottom: 60px; }
    .section-header .badge {
      display: inline-block;
      background: rgba(232,145,58,0.12);
      color: var(--orange);
      font-size: 0.85rem;
      font-weight: 600;
      padding: 6px 20px;
      border-radius: 30px;
      margin-bottom: 16px;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    .section-header h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
    .section-header p { max-width: 600px; margin: 0 auto; color: var(--text-muted); font-size: 1.05rem; }
    .btn {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 14px 32px; border-radius: 50px; font-weight: 600;
      font-size: 0.95rem; cursor: pointer; border: none;
      transition: var(--transition); font-family: 'Poppins', sans-serif;
    }
    .btn-primary { background: var(--orange); color: var(--white); }
    .btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
    .btn-outline { border: 2px solid var(--orange); color: var(--orange); background: transparent; }
    .btn-outline:hover { background: var(--orange); color: var(--white); }
    .btn-white { background: var(--white); color: var(--orange); }
    .btn-white:hover { background: var(--cream); transform: translateY(-2px); box-shadow: var(--shadow-md); }

    /* ===== Navbar ===== */
    .navbar {
      position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
      padding: 18px 0;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(59,35,20,0.06);
      transition: var(--transition);
    }
    .navbar.scrolled { padding: 12px 0; box-shadow: var(--shadow-sm); }
    .navbar .container { display: flex; align-items: center; justify-content: space-between; }
    .navbar .logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.7rem; font-weight: 700;
      color: var(--brown-dark);
    }
    .navbar .logo span { color: var(--orange); }
    .nav-links { display: flex; align-items: center; gap: 36px; }
    .nav-links a { font-size: 0.92rem; font-weight: 500; color: var(--text-body); position: relative; }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0;
      width: 0; height: 2px; background: var(--orange);
      transition: var(--transition);
    }
    .nav-links a:hover { color: var(--orange); }
    .nav-links a:hover::after { width: 100%; }
    .nav-actions { display: flex; align-items: center; gap: 16px; }
    .nav-actions .icon-btn {
      width: 40px; height: 40px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      background: var(--cream); color: var(--text-body);
      border: none; cursor: pointer; transition: var(--transition);
      font-size: 1rem;
    }
    .nav-actions .icon-btn:hover { background: var(--orange); color: var(--white); }
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; background: none; border: none; padding: 4px;
    }
    .hamburger span {
      width: 26px; height: 2.5px; background: var(--brown-dark);
      border-radius: 2px; transition: var(--transition);
    }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* ===== Mobile Nav ===== */
    .mobile-nav {
      display: none; position: fixed; top: 0; left: 0;
      width: 100%; height: 100vh;
      background: var(--white);
      z-index: 999;
      flex-direction: column; align-items: center; justify-content: center;
      gap: 30px; opacity: 0; pointer-events: none;
      transition: var(--transition);
    }
    .mobile-nav.active { display: flex; opacity: 1; pointer-events: all; }
    .mobile-nav a { font-size: 1.3rem; font-weight: 500; color: var(--text-dark); }
    .mobile-nav a:hover { color: var(--orange); }

    /* ===== Hero ===== */
    .hero {
      position: relative; min-height: 100vh;
      display: flex; align-items: center;
      padding-top: 80px;
      background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
      overflow: hidden;
    }
    .hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .hero-content { position: relative; z-index: 2; }
    .hero-content .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(232,145,58,0.12); color: var(--orange);
      padding: 8px 20px; border-radius: 30px;
      font-size: 0.85rem; font-weight: 600; margin-bottom: 24px;
    }
    .hero-content .hero-badge i { font-size: 0.75rem; }
    .hero-content h1 {
      font-size: clamp(2.4rem, 5.5vw, 4rem);
      margin-bottom: 20px; line-height: 1.15;
    }
    .hero-content h1 span { color: var(--orange); }
    .hero-content p {
      font-size: 1.1rem; color: var(--text-muted);
      margin-bottom: 36px; max-width: 480px;
    }
    .hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
    .hero-image { position: relative; }
    .hero-image img {
      width: 100%; height: 520px; object-fit: cover;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
    }
    .hero-image .floating-card {
      position: absolute; bottom: -20px; left: -30px;
      background: var(--white); padding: 20px 28px;
      border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
      display: flex; align-items: center; gap: 14px;
    }
    .floating-card .fc-icon {
      width: 50px; height: 50px; border-radius: 50%;
      background: rgba(232,145,58,0.12);
      display: flex; align-items: center; justify-content: center;
      color: var(--orange); font-size: 1.2rem;
    }
    .floating-card .fc-text strong { display: block; font-size: 1.1rem; color: var(--text-dark); }
    .floating-card .fc-text span { font-size: 0.82rem; color: var(--text-muted); }

    /* ===== Stats Bar ===== */
    .stats-bar {
      background: var(--white);
      padding: 50px 0;
      border-bottom: 1px solid rgba(59,35,20,0.06);
    }
    .stats-bar .container {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 30px; text-align: center;
    }
    .stat-item { padding: 20px; }
    .stat-item .stat-number {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
      color: var(--orange); margin-bottom: 6px;
    }
    .stat-item .stat-label { font-size: 0.95rem; color: var(--text-muted); font-weight: 500; }

    /* ===== Why NaturBR ===== */
    .why-section { background: var(--cream); }
    .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .why-card {
      background: var(--white); padding: 40px 30px;
      border-radius: var(--radius-md); text-align: center;
      transition: var(--transition); border: 1px solid rgba(59,35,20,0.05);
    }
    .why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
    .why-card .why-icon {
      width: 80px; height: 80px; margin: 0 auto 24px;
      background: rgba(232,145,58,0.1);
      border-radius: 50%; display: flex;
      align-items: center; justify-content: center;
      font-size: 1.8rem; color: var(--orange);
      transition: var(--transition);
    }
    .why-card:hover .why-icon { background: var(--orange); color: var(--white); }
    .why-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
    .why-card p { font-size: 0.95rem; color: var(--text-muted); }

    /* ===== Shop by Categories ===== */
    .categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .category-card {
      position: relative; border-radius: var(--radius-md);
      overflow: hidden; cursor: pointer; height: 340px;
    }
    .category-card img {
      width: 100%; height: 100%; object-fit: cover;
      transition: var(--transition);
    }
    .category-card:hover img { transform: scale(1.08); }
    .category-card .cat-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(59,35,20,0.75) 0%, transparent 60%);
      display: flex; flex-direction: column;
      justify-content: flex-end; padding: 28px;
      transition: var(--transition);
    }
    .category-card:hover .cat-overlay { background: linear-gradient(to top, rgba(232,145,58,0.8) 0%, transparent 70%); }
    .category-card .cat-overlay h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 4px; }
    .category-card .cat-overlay span { color: rgba(255,255,255,0.8); font-size: 0.85rem; }
    .category-card .cat-arrow {
      position: absolute; top: 20px; right: 20px;
      width: 40px; height: 40px; border-radius: 50%;
      background: rgba(255,255,255,0.2); backdrop-filter: blur(4px);
      display: flex; align-items: center; justify-content: center;
      color: var(--white); font-size: 0.9rem;
      opacity: 0; transform: translate(-10px, 10px);
      transition: var(--transition);
    }
    .category-card:hover .cat-arrow { opacity: 1; transform: translate(0, 0); }

    /* ===== Achievement Section ===== */
    .achievement {
      background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
      color: var(--white); position: relative; overflow: hidden;
    }
    .achievement::before {
      content: ''; position: absolute; top: -50%; right: -20%;
      width: 600px; height: 600px; border-radius: 50%;
      background: rgba(255,255,255,0.05);
    }
    .achievement::after {
      content: ''; position: absolute; bottom: -30%; left: -10%;
      width: 400px; height: 400px; border-radius: 50%;
      background: rgba(255,255,255,0.04);
    }
    .achievement .container { position: relative; z-index: 2; }
    .achievement .section-header h2 { color: var(--white); }
    .achievement .section-header .badge { background: rgba(255,255,255,0.2); color: var(--white); }
    .achievement .section-header p { color: rgba(255,255,255,0.85); }
    .achievement-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 30px; text-align: center;
    }
    .achievement-item { padding: 30px 20px; }
    .achievement-item .ach-number {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 700;
      color: var(--white); margin-bottom: 8px;
    }
    .achievement-item .ach-label { font-size: 0.95rem; color: rgba(255,255,255,0.85); font-weight: 500; }
    .achievement-item .ach-icon {
      font-size: 2rem; margin-bottom: 16px;
      color: rgba(255,255,255,0.7);
    }

    /* ===== Products Carousel ===== */
    .products-section { background: var(--cream); }
    .carousel-wrapper { position: relative; overflow: hidden; }
    .carousel-track {
      display: flex; gap: 24px;
      transition: transform 0.5s ease;
    }
    .product-card {
      min-width: calc(25% - 18px); background: var(--white);
      border-radius: var(--radius-md); overflow: hidden;
      box-shadow: var(--shadow-sm); transition: var(--transition);
      flex-shrink: 0;
    }
    .product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
    .product-card .product-img {
      position: relative; height: 260px; overflow: hidden;
    }
    .product-card .product-img img {
      width: 100%; height: 100%; object-fit: cover;
      transition: var(--transition);
    }
    .product-card:hover .product-img img { transform: scale(1.05); }
    .product-card .product-badge {
      position: absolute; top: 14px; left: 14px;
      background: var(--orange); color: var(--white);
      padding: 4px 14px; border-radius: 20px;
      font-size: 0.78rem; font-weight: 600;
    }
    .product-card .product-wishlist {
      position: absolute; top: 14px; right: 14px;
      width: 36px; height: 36px; border-radius: 50%;
      background: var(--white); border: none;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: var(--transition);
      color: var(--text-muted); font-size: 0.9rem;
    }
    .product-card .product-wishlist:hover { color: #e74c3c; background: #ffeaea; }
    .product-card .product-info { padding: 20px; }
    .product-card .product-info .product-category {
      font-size: 0.78rem; color: var(--text-muted);
      text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px;
    }
    .product-card .product-info h3 { font-size: 1.1rem; margin-bottom: 10px; }
    .product-card .product-info .product-price {
      display: flex; align-items: center; gap: 10px;
    }
    .product-card .product-info .product-price .current {
      font-size: 1.15rem; font-weight: 700; color: var(--orange);
    }
    .product-card .product-info .product-price .original {
      font-size: 0.9rem; color: var(--text-muted);
      text-decoration: line-through;
    }
    .product-card .product-info .product-rating { margin-top: 10px; color: #f5a623; font-size: 0.85rem; }
    .product-card .product-info .product-rating span { color: var(--text-muted); margin-left: 6px; }
    .carousel-controls {
      display: flex; justify-content: center;
      gap: 16px; margin-top: 40px;
    }
    .carousel-btn {
      width: 48px; height: 48px; border-radius: 50%;
      border: 2px solid var(--orange); background: var(--white);
      color: var(--orange); display: flex;
      align-items: center; justify-content: center;
      cursor: pointer; transition: var(--transition);
      font-size: 1rem;
    }
    .carousel-btn:hover { background: var(--orange); color: var(--white); }

    /* ===== Testimonials ===== */
    .testimonials { background: var(--white); }
    .testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .testimonial-card {
      background: var(--cream); padding: 36px;
      border-radius: var(--radius-md);
      transition: var(--transition); position: relative;
    }
    .testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
    .testimonial-card .quote-icon {
      font-size: 2.5rem; color: var(--orange-light);
      margin-bottom: 16px; line-height: 1;
    }
    .testimonial-card p {
      font-size: 0.98rem; color: var(--text-body);
      margin-bottom: 24px; font-style: italic; line-height: 1.8;
    }
    .testimonial-card .tc-author { display: flex; align-items: center; gap: 14px; }
    .testimonial-card .tc-author img {
      width: 50px; height: 50px; border-radius: 50%;
      object-fit: cover; border: 3px solid var(--orange-light);
    }
    .testimonial-card .tc-author strong { display: block; font-size: 0.95rem; color: var(--text-dark); }
    .testimonial-card .tc-author span { font-size: 0.82rem; color: var(--text-muted); }
    .testimonial-card .tc-stars { color: #f5a623; font-size: 0.85rem; margin-bottom: 14px; }

    /* ===== Newsletter ===== */
    .newsletter {
      position: relative; padding: 0;
      display: grid; grid-template-columns: 1fr 1fr;
      min-height: 450px; overflow: hidden;
    }
    .newsletter-image { position: relative; }
    .newsletter-image img { width: 100%; height: 100%; object-fit: cover; }
    .newsletter-content {
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      padding: 60px; background: var(--brown-dark);
      color: var(--white); text-align: center;
    }
    .newsletter-content h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 16px; }
    .newsletter-content p { color: rgba(255,255,255,0.75); margin-bottom: 30px; max-width: 400px; }
    .newsletter-form {
      display: flex; gap: 12px; width: 100%; max-width: 440px;
    }
    .newsletter-form input {
      flex: 1; padding: 14px 22px; border-radius: 50px;
      border: 2px solid rgba(255,255,255,0.15);
      background: rgba(255,255,255,0.08); color: var(--white);
      font-size: 0.95rem; font-family: 'Poppins', sans-serif;
      outline: none; transition: var(--transition);
    }
    .newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
    .newsletter-form input:focus { border-color: var(--orange); }
    .newsletter-form button { white-space: nowrap; }

    /* ===== CTA Section ===== */
    .cta-section {
      position: relative; padding: 120px 0;
      background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 100%);
      overflow: hidden; text-align: center;
    }
    .cta-section::before {
      content: ''; position: absolute; top: 0; left: 0;
      width: 100%; height: 100%;
      background: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1400&q=80') center/cover no-repeat;
      opacity: 0.12;
    }
    .cta-section .container { position: relative; z-index: 2; }
    .cta-section h2 {
      color: var(--white); font-size: clamp(2rem, 4.5vw, 3.2rem);
      margin-bottom: 20px;
    }
    .cta-section h2 span { color: var(--orange); }
    .cta-section p {
      color: rgba(255,255,255,0.8); font-size: 1.1rem;
      max-width: 560px; margin: 0 auto 40px;
    }
    .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

    /* ===== Footer ===== */
    .footer {
      background: var(--brown-dark); color: rgba(255,255,255,0.7);
      padding: 80px 0 0;
    }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 40px; padding-bottom: 60px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .footer-col h3 {
      color: var(--white); font-family: 'Poppins', sans-serif;
      font-size: 1.1rem; font-weight: 600; margin-bottom: 24px;
    }
    .footer-col .footer-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.7rem; font-weight: 700;
      color: var(--white); margin-bottom: 16px;
    }
    .footer-col .footer-logo span { color: var(--orange); }
    .footer-col p { font-size: 0.92rem; line-height: 1.8; margin-bottom: 20px; }
    .footer-col .social-links { display: flex; gap: 12px; }
    .footer-col .social-links a {
      width: 40px; height: 40px; border-radius: 50%;
      background: rgba(255,255,255,0.08);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.6); transition: var(--transition);
    }
    .footer-col .social-links a:hover { background: var(--orange); color: var(--white); }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul li a { font-size: 0.92rem; color: rgba(255,255,255,0.6); }
    .footer-col ul li a:hover { color: var(--orange); padding-left: 4px; }
    .footer-col .contact-item {
      display: flex; align-items: flex-start; gap: 12px;
      margin-bottom: 16px; font-size: 0.92rem;
    }
    .footer-col .contact-item i { color: var(--orange); margin-top: 4px; width: 16px; }
    .footer-bottom {
      padding: 24px 0; text-align: center;
      font-size: 0.85rem; color: rgba(255,255,255,0.4);
    }
    .footer-bottom a { color: var(--orange); }

    /* ===== Responsive ===== */
    @media (max-width: 1024px) {
      .hero .container { grid-template-columns: 1fr; text-align: center; }
      .hero-content p { margin: 0 auto 36px; }
      .hero-buttons { justify-content: center; }
      .hero-image { max-width: 600px; margin: 0 auto; }
      .hero-image .floating-card { left: 20px; }
      .categories-grid { grid-template-columns: repeat(2, 1fr); }
      .achievement-grid { grid-template-columns: repeat(2, 1fr); }
      .product-card { min-width: calc(33.333% - 16px); }
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .nav-links, .nav-actions .btn { display: none; }
      .hamburger { display: flex; }
      .section-padding { padding: 70px 0; }
      .why-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
      .testimonial-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
      .newsletter { grid-template-columns: 1fr; }
      .newsletter-image { height: 300px; }
      .newsletter-content { padding: 40px 24px; }
      .newsletter-form { flex-direction: column; }
      .product-card { min-width: calc(50% - 12px); }
      .stats-bar .container { grid-template-columns: 1fr; gap: 10px; }
    }
    @media (max-width: 480px) {
      .categories-grid { grid-template-columns: 1fr; }
      .achievement-grid { grid-template-columns: 1fr; }
      .product-card { min-width: 100%; }
      .footer-grid { grid-template-columns: 1fr; }
      .hero-image img { height: 350px; }
    }