body {
      box-sizing: border-box;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      height: 100%;
      width: 100%;
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Lato', sans-serif;
      background: #F9F5F0;
      color: #333;
      overflow-x: hidden;
    }

    h1, h2, h3, h4 {
      font-family: 'Playfair Display', serif;
    }

    .app-wrapper {
      width: 100%;
      min-height: 100%;
    }

    /* Header */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.95);
      padding: 1.2rem 5%;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      z-index: 1000;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: #D4AF37;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      align-items: center;
    }

    .nav-links a {
      text-decoration: none;
      color: #555;
      font-weight: 400;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: #D4AF37;
    }

    .header-actions {
      display: flex;
      gap: 1rem;
      align-items: center;
    }

    .btn-login, .btn-logout, .btn-cart {
      padding: 0.6rem 1.5rem;
      border: 2px solid #D4AF37;
      background: transparent;
      color: #D4AF37;
      border-radius: 25px;
      cursor: pointer;
      transition: all 0.3s;
      font-weight: 600;
      font-size: 0.9rem;
    }

    .btn-login:hover, .btn-cart:hover {
      background: #D4AF37;
      color: white;
    }

    .btn-logout {
      background: #D4AF37;
      color: white;
    }

    .btn-logout:hover {
      background: #B8941F;
    }

    .cart-count {
      position: relative;
      top: -8px;
      right: -5px;
      background: #D4AF37;
      color: white;
      border-radius: 50%;
      padding: 0.2rem 0.5rem;
      font-size: 0.75rem;
      font-weight: bold;
    }

    /* Hero Section */
    .hero-section {
      position: relative;
      height: 100%;
      min-height: 700px;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      margin-top: 70px;
    }

    .hero-slider {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .hero-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1.5s ease-in-out;
      background-size: cover;
      background-position: center;
    }

    .hero-slide.active {
      opacity: 1;
    }

    .hero-slide::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
    }

    .hero-content {
      position: relative;
      z-index: 10;
      text-align: center;
      color: white;
      max-width: 900px;
      padding: 2rem;
    }

    .hero-content h1 {
      font-size: 4rem;
      margin-bottom: 1rem;
      font-weight: 700;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .typewriter {
      font-size: 1.5rem;
      margin-bottom: 2rem;
      min-height: 50px;
      font-weight: 300;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }

    .marquee-container {
      position: absolute;
      bottom: 50px;
      left: 0;
      width: 100%;
      overflow: hidden;
      background: rgba(212, 175, 55, 0.9);
      padding: 1rem 0;
      z-index: 10;
    }

    .marquee-text {
      display: inline-block;
      white-space: nowrap;
      animation: marquee 20s linear infinite;
      color: white;
      font-size: 1.2rem;
      font-weight: 600;
    }

    @keyframes marquee {
      0% { transform: translateX(100%); }
      100% { transform: translateX(-100%); }
    }

    .hero-buttons {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      margin-top: 2rem;
    }

    .btn-primary, .btn-secondary {
      padding: 1rem 2.5rem;
      border: none;
      border-radius: 30px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
    }

    .btn-primary {
      background: #D4AF37;
      color: white;
    }

    .btn-primary:hover {
      background: #B8941F;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    }

    .btn-secondary {
      background: white;
      color: #D4AF37;
      border: 2px solid white;
    }

    .btn-secondary:hover {
      background: transparent;
      color: white;
      transform: translateY(-2px);
    }

    /* Section Styling */
    .main-section {
      padding: 5rem 5%;
      width: 100%;
    }

    .section-title {
      text-align: center;
      font-size: 3rem;
      margin-bottom: 3rem;
      color: #333;
      position: relative;
    }

    .section-title::after {
      content: '';
      display: block;
      width: 100px;
      height: 3px;
      background: #D4AF37;
      margin: 1rem auto;
    }

    /* Product Grid */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .product-card {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      transition: all 0.3s;
      cursor: pointer;
    }

    .product-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .product-image {
      width: 100%;
      height: 300px;
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
    }

    .product-card:hover .product-image {
      transform: scale(1.05);
      transition: transform 0.5s;
    }

    .product-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      background: #D4AF37;
      color: white;
      padding: 0.4rem 1rem;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
    }

    .product-info {
      padding: 1.5rem;
    }

    .product-category {
      color: #A3C9A8;
      font-size: 0.9rem;
      font-weight: 600;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }

    .product-title {
      font-size: 1.4rem;
      margin-bottom: 0.5rem;
      color: #333;
    }

    .product-description {
      color: #777;
      font-size: 0.95rem;
      margin-bottom: 1rem;
      line-height: 1.6;
    }

    .product-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .product-price {
      font-size: 1.5rem;
      font-weight: 700;
      color: #D4AF37;
    }

    .btn-add-cart {
      padding: 0.7rem 1.5rem;
      background: #A3C9A8;
      color: white;
      border: none;
      border-radius: 25px;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s;
    }

    .btn-add-cart:hover {
      background: #8BB896;
      transform: scale(1.05);
    }

    /* About Section */
    .about-section {
      background: white;
      padding: 5rem 5%;
      width: 100%;
      text-align: center;
    }

    .about-content {
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.8;
      color: #555;
      font-size: 1.1rem;
    }

    /* Testimonials */
    .testimonials-section {
      padding: 5rem 5%;
      width: 100%;
      background: #F9F5F0;
    }

    .testimonial-carousel {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      overflow: hidden;
    }

    .testimonial-card {
      background: white;
      padding: 3rem;
      border-radius: 20px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      text-align: center;
      display: none;
    }

    .testimonial-card.active {
      display: block;
      animation: fadeIn 0.5s;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .testimonial-text {
      font-size: 1.2rem;
      color: #555;
      font-style: italic;
      margin-bottom: 1.5rem;
      line-height: 1.8;
    }

    .testimonial-author {
      font-weight: 700;
      color: #D4AF37;
      font-size: 1.1rem;
    }

    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 0.8rem;
      margin-top: 2rem;
    }

    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #E0E0E0;
      cursor: pointer;
      transition: all 0.3s;
    }

    .dot.active {
      background: #D4AF37;
      transform: scale(1.3);
    }

    /* Subscribe Section */
    .subscribe-section {
      padding: 5rem 5%;
      width: 100%;
      background: linear-gradient(135deg, #D4AF37, #A3C9A8);
      text-align: center;
      color: white;
    }

    .subscribe-content {
      max-width: 600px;
      margin: 0 auto;
    }

    .subscribe-section h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .subscribe-section p {
      font-size: 1.1rem;
      margin-bottom: 2rem;
      opacity: 0.95;
    }

    .subscribe-form {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .email-input {
      padding: 1rem 1.5rem;
      border: none;
      border-radius: 30px;
      font-size: 1rem;
      min-width: 300px;
      outline: none;
    }

    .btn-subscribe, .btn-unsubscribe {
      padding: 1rem 2rem;
      border: none;
      border-radius: 30px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
    }

    .btn-subscribe {
      background: white;
      color: #D4AF37;
    }

    .btn-subscribe:hover {
      background: #f0f0f0;
      transform: scale(1.05);
    }

    .btn-unsubscribe {
      background: transparent;
      color: white;
      border: 2px solid white;
    }

    .btn-unsubscribe:hover {
      background: white;
      color: #D4AF37;
      transform: scale(1.05);
    }

    /* Footer */
    .footer {
      background: #333;
      color: #E0E0E0;
      padding: 4rem 5% 2rem;
      width: 100%;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-section h3 {
      color: #D4AF37;
      margin-bottom: 1.5rem;
      font-size: 1.3rem;
    }

    .footer-section ul {
      list-style: none;
    }

    .footer-section ul li {
      margin-bottom: 0.8rem;
    }

    .footer-section a {
      color: #E0E0E0;
      text-decoration: none;
      transition: color 0.3s;
      cursor: pointer;
    }

    .footer-section a:hover {
      color: #D4AF37;
    }

    .social-icons {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }

    .social-icon {
      width: 40px;
      height: 40px;
      background: #555;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-decoration: none;
      transition: all 0.3s;
    }

    .social-icon:hover {
      background: #D4AF37;
      transform: scale(1.1);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid #555;
      color: #999;
    }

    /* Modal Popup */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.7);
      z-index: 2000;
      justify-content: center;
      align-items: center;
      padding: 2rem;
    }

    .modal.active {
      display: flex;
    }

    .modal-content {
      background: white;
      border-radius: 15px;
      padding: 3rem;
      max-width: 600px;
      max-height: 80%;
      overflow-y: auto;
      position: relative;
      animation: slideIn 0.3s;
    }

    @keyframes slideIn {
      from { transform: translateY(-50px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    .modal-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      width: 35px;
      height: 35px;
      background: #E0E0E0;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      font-size: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
    }

    .modal-close:hover {
      background: #D4AF37;
      color: white;
    }

    .modal-content h2 {
      color: #D4AF37;
      margin-bottom: 1.5rem;
    }

    .modal-content p {
      line-height: 1.8;
      color: #555;
      margin-bottom: 1rem;
    }

    /* Login/Signup Form */
    .auth-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .form-input {
      padding: 0.8rem;
      border: 2px solid #E0E0E0;
      border-radius: 8px;
      font-size: 1rem;
      outline: none;
      transition: border 0.3s;
    }

    .form-input:focus {
      border-color: #D4AF37;
    }

    .form-toggle {
      text-align: center;
      color: #D4AF37;
      cursor: pointer;
      margin-top: 1rem;
      text-decoration: underline;
    }

    /* Cart Modal */
    .cart-items {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .cart-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem;
      background: #F9F5F0;
      border-radius: 10px;
    }

    .cart-item-info {
      flex: 1;
    }

    .cart-item-title {
      font-weight: 700;
      color: #333;
      margin-bottom: 0.3rem;
    }

    .cart-item-price {
      color: #D4AF37;
      font-weight: 600;
    }

    .btn-remove {
      padding: 0.5rem 1rem;
      background: #ff6b6b;
      color: white;
      border: none;
      border-radius: 20px;
      cursor: pointer;
      font-size: 0.9rem;
      transition: all 0.3s;
    }

    .btn-remove:hover {
      background: #ee5a52;
    }

    .cart-total {
      text-align: right;
      font-size: 1.5rem;
      font-weight: 700;
      color: #D4AF37;
      margin-bottom: 1.5rem;
    }

    .btn-checkout {
      width: 100%;
      padding: 1rem;
      background: #D4AF37;
      color: white;
      border: none;
      border-radius: 30px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
    }

    .btn-checkout:hover {
      background: #B8941F;
    }

    .empty-cart {
      text-align: center;
      color: #999;
      padding: 2rem;
      font-style: italic;
    }

    .notification {
      position: fixed;
      top: 100px;
      right: 20px;
      background: #A3C9A8;
      color: white;
      padding: 1rem 1.5rem;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
      z-index: 3000;
      animation: slideInRight 0.3s;
      display: none;
    }

    .notification.show {
      display: block;
    }

    @keyframes slideInRight {
      from { transform: translateX(400px); }
      to { transform: translateX(0); }
    }

    /* Responsive */
    @media (max-width: 768px) {
      .header {
        flex-wrap: wrap;
        gap: 1rem;
      }

      .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
      }

      .hero-content h1 {
        font-size: 2.5rem;
      }

      .typewriter {
        font-size: 1.2rem;
      }

      .section-title {
        font-size: 2rem;
      }

      .product-grid {
        grid-template-columns: 1fr;
      }

      .subscribe-form {
        flex-direction: column;
      }

      .email-input {
        min-width: 100%;
      }

      .footer-content {
        grid-template-columns: 1fr;
      }
    }

    .hidden {
      display: none !important;
    }
  