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

  body {
      font-family: 'Inter', sans-serif;
      background: linear-gradient(135deg, #fce4ec 0%, #ffccbc 50%, #f8bbd9 100%);
      min-height: 100vh;
      color: #5d4037;
  }

  .container {
      max-width: 95%;
      margin: 0 auto;
      padding: 0 20px;
  }

  /* Enhanced Header */
  header {
      padding: 15px 0;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(252, 228, 236, 0.85);
      backdrop-filter: blur(20px);
      z-index: 1000;
      transition: all 0.3s ease;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  header.scrolled {
      background: rgba(252, 228, 236, 0.95);
      padding: 10px 0;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

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

  .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      transition: transform 0.3s ease;
  }

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

  .logo-icon {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
      overflow: hidden;
      transition: all 0.3s ease;
  }

  .logo-icon:hover {
      box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
      transform: rotate(5deg);
  }

  .logo-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
  }

  .logo-text {
      font-family: 'Playfair Display', serif;
      font-size: 26px;
      font-weight: 600;
      color: #5d4037;
      letter-spacing: -0.5px;
  }

  .nav-links {
      display: flex;
      gap: 35px;
      list-style: none;
      margin: 0;
      padding: 0;
  }

  .nav-link {
      text-decoration: none;
      color: #5d4037;
      font-weight: 500;
      font-size: 16px;
      position: relative;
      padding: 8px 16px;
      border-radius: 25px;
      transition: all 0.3s ease;
  }

  .nav-link::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background: linear-gradient(135deg, #d4af37, #f4e6c1);
      transition: all 0.3s ease;
      transform: translateX(-50%);
  }

  .nav-link:hover {
      color: #d4af37;
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-2px);
  }

  .nav-link:hover::before {
      width: 80%;
  }

  .nav-link.active {
      color: #d4af37;
      background: rgba(212, 175, 55, 0.1);
  }

  .nav-link.active::before {
      width: 80%;
  }

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

  .mobile-menu-toggle span {
      width: 25px;
      height: 3px;
      background: #5d4037;
      margin: 3px 0;
      transition: all 0.3s ease;
      border-radius: 2px;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
      opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
  }

  /* Responsive */
  @media (max-width: 768px) {
      .nav-links {
          position: fixed;
          top: 100%;
          left: 0;
          right: 0;
          background: rgba(252, 228, 236, 0.95);
          backdrop-filter: blur(20px);
          flex-direction: column;
          padding: 30px 20px;
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
          transform: translateY(-100vh);
          transition: all 0.3s ease;
          gap: 20px;
      }

      .nav-links.active {
          transform: translateY(0);
      }

      .nav-link {
          text-align: center;
          padding: 12px 20px;
          font-size: 18px;
      }

      .mobile-menu-toggle {
          display: flex;
      }

      .logo-text {
          font-size: 22px;
      }

      .logo-icon {
          width: 40px;
          height: 40px;
      }
  }

  /* Smooth scroll */
  html {
      scroll-behavior: smooth;
  }

  /* Add padding to body to account for fixed header */
  body {
      padding-top: 80px;
  }

  /* Smooth scroll */
  html {
      scroll-behavior: smooth;
  }

  /* Add padding to body to account for fixed header */
  body {
      padding-top: 80px;
  }

  .hero {
      position: relative;
      width: 100%;
      height: 750px;
      text-align: center;
      overflow: hidden;
      padding: 20px 0;
      color: white;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 0;
  }

  #hero_bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      filter: blur(8px);
      opacity: 1;
      z-index: -1;
      transition: opacity 1s ease-in-out;
  }

  .hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      filter: blur(5px);
      background-image: url("/public/imges/2149635322.jpg");
      transition: background-image 1s ease-in-out;
      z-index: -1;
  }

  .hero-content {
      position: relative;
      z-index: 2;
      top: -9%;
      left: -20%;

  }

  .hero-logo {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 30px;
      box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
      animation: float 6s ease-in-out infinite;
      overflow: hidden;
  }

  .hero-logo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
  }

  @keyframes float {

      0%,
      100% {
          transform: translateY(0px);
      }

      50% {
          transform: translateY(-10px);
      }
  }

  .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: 3.5rem;
      font-weight: 700;
      color: #f8d26a;
      margin-bottom: 20px;
      line-height: 1.2;
  }

  .hero p {
      font-size: 1.3rem;
      color: #bad160;
      margin-bottom: 40px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
  }

  .cta-button {
      display: inline-block;
      background: linear-gradient(135deg, #d4af37, #f4e6c1);
      color: white;
      padding: 16px 40px;
      text-decoration: none;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1.1rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  }

  .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
  }

  /* Section Styles */
  .section {
      padding: 30px 0;
      position: relative;
  }

  .section-title {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      font-weight: 600;
      color: #5d4037;
      text-align: center;
      margin-bottom: 60px;
  }

  /* Featured Products */
  .swiper {
      width: 100%;
      padding: 20px 0 60px 0;
  }

  .swiper-slide {
      height: auto;
  }

  .swiper-pagination-bullet {
      background: #d4af37;
      opacity: 0.3;
  }

  .swiper-pagination-bullet-active {
      opacity: 1;
      background: #d4af37;
  }

  .swiper-button-next,
  .swiper-button-prev {
      color: #d4af37;
      background: rgba(255, 255, 255, 0.9);
      border-radius: 50%;
      width: 44px;
      height: 44px;
      margin-top: -22px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
      font-size: 18px;
      font-weight: 900;
  }

  .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 60px;
  }

  .product-card {
      background: #fff;
      border-radius: 16px;
      padding: 16px;
      text-align: center;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
      transition: all 0.3s ease;
  }

  .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  }

  .product-image img {
      width: 100%;
      height: 500px;
      object-fit: cover;
      border-radius: 12px;
  }

  .swiper-pagination {
      display: none;
  }

  .product-card:hover .product-image {
      transform: scale(1.05);
  }

  .product-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      font-weight: 600;
      color: #5d4037;
      margin-bottom: 8px;
      margin-top: 10px;
  }

  .product-price {
      font-size: 1.2rem;
      color: #d4af37;
      font-weight: 600;
      margin-bottom: 15px;
  }

  .product-button {
      background: linear-gradient(135deg, #f8bbd9, #fce4ec);
      color: #5d4037;
      border: none;
      padding: 12px 25px;
      border-radius: 25px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 100%;
  }

  .product-button:hover {
      background: linear-gradient(135deg, #d4af37, #f4e6c1);
      color: white;
      transform: translateY(-2px);
  }

  /* About Section */
  .about {
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(10px);
      border-radius: 30px;
      padding: 30px 40px;
      margin: 40px 0;
  }

  .about-content {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
  }

  .about-text {
      font-size: 1.2rem;
      line-height: 1.8;
      color: #5d4037;
      margin-bottom: 30px;
  }

  /* Testimonials */
  .testimonials-swiper {
      width: 100%;
      padding: 20px 0 60px 0;
  }

  .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 60px;
  }

  .testimonial-card {
      background: rgba(255, 255, 255, 0.9);
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(10px);
      position: relative;
  }

  .testimonial-card::before {
      content: '"';
      position: absolute;
      top: 10px;
      left: 20px;
      font-size: 4rem;
      color: #f8bbd9;
      font-family: 'Playfair Display', serif;
  }

  .testimonial-text {
      font-size: 1.1rem;
      line-height: 1.6;
      color: #5d4037;
      margin-bottom: 20px;
      padding-left: 40px;
  }

  .testimonial-author {
      font-weight: 600;
      color: #d4af37;
      font-size: 1rem;
  }

  /* How to Order */
  .order-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-top: 60px;
  }

  .step {
      text-align: center;
      padding: 30px 20px;
      background: rgba(255, 255, 255, 0.8);
      border-radius: 20px;
      backdrop-filter: blur(10px);
      transition: transform 0.3s ease;
  }

  .step:hover {
      transform: translateY(-5px);
  }

  .step-number {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #d4af37, #f4e6c1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: 700;
      color: white;
      margin: 0 auto 20px;
  }

  .step-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      font-weight: 600;
      color: #5d4037;
      margin-bottom: 10px;
  }

  .step-text {
      color: #8d6e63;
      line-height: 1.6;
  }

  /* Contact Section */
  .contact {
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(10px);
      border-radius: 30px;
      padding: 60px 40px;
      margin: 40px 0;
      text-align: center;
  }

  .contact-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
      flex-wrap: wrap;
  }

  .contact-button {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 15px 30px;
      background: linear-gradient(135deg, #f8bbd9, #fce4ec);
      color: #5d4037;
      text-decoration: none;
      border-radius: 25px;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .contact-button:hover {
      background: linear-gradient(135deg, #d4af37, #f4e6c1);
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  }

  /* Footer */
  footer {
      background: rgba(93, 64, 55, 0.9);
      color: #f4e6c1;
      text-align: center;
      padding: 40px 0;
      margin-top: 80px;
  }

  .footer-content {
      max-width: 800px;
      margin: 0 auto;
  }

  .footer-text {
      font-size: 1.1rem;
      opacity: 0.9;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
      .hero h1 {
          font-size: 2.5rem;
      }

      .hero p {
          font-size: 1.1rem;
      }

      .section-title {
          font-size: 2rem;
      }

      .nav-links {
          display: none;
      }

      .contact-buttons {
          flex-direction: column;
          align-items: center;
      }

      .contact-button {
          width: 100%;
          max-width: 300px;
          justify-content: center;
      }
  }

  @media (max-width: 480px) {
      .container {
          padding: 0 15px;
      }

      .hero {
          padding: 60px 0 80px;
      }

      .section {
          padding: 60px 0;
      }

      .about,
      .contact {
          padding: 40px 20px;
      }
  }