body {
      box-sizing: border-box;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background: #FFFFFF;
      color: #333;
      overflow-x: hidden;
      width: 100%;
    }

    html, body {
      height: 100%;
    }

    .app-wrapper {
      width: 100%;
      min-height: 100%;
    }

    .page-section {
      display: none;
    }

    .page-section.active {
      display: block;
    }

    /* Navbar */
    .navbar {
      position: sticky;
      top: 0;
      background: transparent;
      box-shadow: 0 2px 10px rgba(255, 106, 0, 0.1);
      z-index: 1000;
      padding: 1rem 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: 700;
      background: linear-gradient(135deg, #FF6A00, #FF8C42);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      cursor: pointer;
    }

    .nav-menu {
      display: flex;
      gap: 2rem;
      list-style: none;
      align-items: center;
    }

    .nav-menu a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      transition: color 0.3s;
      font-size: 0.95rem;
      cursor: pointer;
    }

    .nav-menu a:hover {
      color: #FF6A00;
    }

    .nav-cta {
      background: #FF6A00;
      color: white;
      padding: 0.7rem 1.8rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s;
      box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
      cursor: pointer;
    }

    .nav-cta:hover {
      background: #FF8C42;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(255, 106, 0, 0.4);
    }

    .auth-buttons {
      display: flex;
      gap: 1rem;
      align-items: center;
    }

    .cart-icon-btn {
      position: relative;
      background: transparent;
      border: 2px solid #FF6A00;
      color: #FF6A00;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s;
      font-size: 1.2rem;
    }

    .cart-icon-btn:hover {
      background: #FF6A00;
      color: white;
    }

    .cart-badge {
      position: absolute;
      top: -5px;
      right: -5px;
      background: #FF6A00;
      color: white;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      font-weight: 700;
    }

    .login-btn, .logout-btn {
      background: transparent;
      color: #FF6A00;
      border: 2px solid #FF6A00;
      padding: 0.6rem 1.5rem;
      border-radius: 50px;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s;
      font-size: 0.9rem;
    }

    .login-btn:hover, .logout-btn:hover {
      background: #FF6A00;
      color: white;
    }

    .user-greeting {
      color: #FF6A00;
      font-weight: 600;
      font-size: 0.95rem;
    }

    /* Hero Section */
    .hero {
      width: 100%;
      display: flex;
      align-items: stretch;
      min-height: 85%;
      overflow: hidden;
    }

    .hero-left {
      flex: 1;
      background: linear-gradient(135deg, #FF6A00, #FF8C42);
      padding: 5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      position: relative;
      overflow: hidden;
    }

    .hero-left::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -20%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
      border-radius: 50%;
    }

    .hero-left::after {
      content: '';
      position: absolute;
      bottom: -30%;
      right: -15%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent);
      border-radius: 50%;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 600px;
    }

    .hero-label {
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
      font-family: 'Montserrat', sans-serif;
    }

    .hero h1 {
      font-size: 4rem;
      font-weight: 800;
      color: white;
      margin-bottom: 1.5rem;
      line-height: 1.1;
      font-family: 'Playfair Display', serif;
    }

    .typewriter {
      display: inline-block;
      border-right: 3px solid white;
      padding-right: 10px;
      animation: blink 0.7s infinite;
    }

    @keyframes blink {
      0%, 50% { border-color: white; }
      51%, 100% { border-color: transparent; }
    }

    .marquee-container {
      overflow: hidden;
      margin: 2rem 0;
      background: rgba(255, 255, 255, 0.1);
      padding: 1rem 0;
      border-radius: 10px;
    }

    .marquee {
      display: flex;
      animation: scroll 25s linear infinite;
      white-space: nowrap;
    }

    .marquee span {
      color: white;
      font-weight: 600;
      font-size: 1.1rem;
      margin: 0 3rem;
      font-family: 'Montserrat', sans-serif;
    }

    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .hero p {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.95);
      margin-bottom: 2.5rem;
      line-height: 1.8;
      font-weight: 400;
    }

    .hero-buttons {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .hero-right {
      flex: 1;
      background: linear-gradient(135deg, #FFF5EE, #FFE4CC);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      position: relative;
      overflow: hidden;

    }

    .hero-image-container {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .hero-image-main {
      width: 100%;
      height: 100%;
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(255, 106, 0, 0.3);
      animation: float 6s ease-in-out infinite;
        object-fit: cover;      /* Makes image fill the area */
        border-radius: 0;       /* Full edge-to-edge image */
        box-shadow: none;       /* Remove shadow for clean full layout */
        animation: none;        /* Optional: remove float animation */
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-20px); }
    }

    .hero-decoration {
      position: absolute;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 106, 0, 0.15), transparent);
    }

    .decoration-1 {
      width: 300px;
      height: 300px;
      top: 10%;
      left: 5%;
    }

    .decoration-2 {
      width: 200px;
      height: 200px;
      bottom: 15%;
      right: 10%;
    }

    .decoration-3 {
      width: 150px;
      height: 150px;
      top: 50%;
      right: 20%;
    }

    .btn-primary {
      background: white;
      color: #FF6A00;
      padding: 1.1rem 2.8rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 700;
      transition: all 0.3s;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
      border: 2px solid white;
      font-family: 'Montserrat', sans-serif;
      font-size: 1rem;
      letter-spacing: 0.5px;
      cursor: pointer;
      display: inline-block;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
      background: rgba(255, 255, 255, 0.95);
    }

    .btn-outline {
      background: transparent;
      color: white;
      padding: 1.1rem 2.8rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 700;
      transition: all 0.3s;
      border: 2px solid white;
      font-family: 'Montserrat', sans-serif;
      font-size: 1rem;
      letter-spacing: 0.5px;
      cursor: pointer;
      display: inline-block;
    }

    .btn-outline:hover {
      background: white;
      color: #FF6A00;
      transform: translateY(-3px);
    }

    /* Section Styles */
    .section {
      width: 100%;
      padding: 4rem 5%;
    }

    .section-title {
      text-align: center;
      font-size: 2.8rem;
      font-weight: 700;
      margin-bottom: 3rem;
      color: #333;
      font-family: 'Playfair Display', serif;
      letter-spacing: -0.5px;
    }

    .section-title span {
      background: linear-gradient(135deg, #FF6A00, #FF8C42);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .breadcrumb {
      padding: 2rem 5% 0;
      font-size: 0.95rem;
      color: #666;
    }

    .breadcrumb a {
      color: #FF6A00;
      text-decoration: none;
      cursor: pointer;
    }

    .breadcrumb a:hover {
      text-decoration: underline;
    }

    /* Categories Grid */
    .categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      max-width: 1400px;
      margin: 0 auto;
    }

    .category-card {
      background: white;
      border-radius: 20px;
      padding: 2rem;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.3s;
      cursor: pointer;
      border: 2px solid transparent;
    }

    .category-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(255, 106, 0, 0.2);
      border-color: #FF6A00;
    }

    .category-image {
      width: 100%;
      height: 150px;
      object-fit: cover;
      border-radius: 15px;
      margin-bottom: 1rem;
    }

    .category-card h3 {
      font-size: 1.3rem;
      color: #333;
      font-weight: 600;
    }

    /* Products Grid */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 2.5rem;
      max-width: 1400px;
      margin: 0 auto;
    }

    .product-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.3s;
      cursor: pointer;
      border: 2px solid transparent;
    }

    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 30px rgba(255, 106, 0, 0.2);
      border-color: #FF6A00;
    }

    .product-image {
      width: 100%;
      height: 280px;
      object-fit: cover;
      position: relative;
    }

    .product-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      background: #FF6A00;
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
    }

    .product-info {
      padding: 1.5rem;
    }

    .product-tags {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
      margin-bottom: 1rem;
    }

    .tag {
      background: rgba(255, 106, 0, 0.1);
      color: #FF6A00;
      padding: 0.3rem 0.8rem;
      border-radius: 15px;
      font-size: 0.75rem;
      font-weight: 500;
    }

    .product-name {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: #333;
    }

    .product-price {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .price-current {
      font-size: 1.5rem;
      font-weight: 700;
      color: #FF6A00;
    }

    .price-old {
      font-size: 1.1rem;
      color: #999;
      text-decoration: line-through;
    }

    .product-buttons {
      display: flex;
      gap: 1rem;
    }

    .btn-add-cart {
      flex: 1;
      background: #FF6A00;
      color: white;
      border: none;
      padding: 0.8rem;
      border-radius: 10px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }

    .btn-add-cart:hover {
      background: #FF8C42;
      transform: scale(1.05);
    }

    .btn-details {
      background: transparent;
      color: #FF6A00;
      border: 2px solid #FF6A00;
      padding: 0.8rem 1.5rem;
      border-radius: 10px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
    }

    .btn-details:hover {
      background: #FF6A00;
      color: white;
    }

    /* Product Detail Page */
    .product-detail {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      padding: 3rem 0;
    }

    .product-detail-image {
      width: 100%;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .product-detail-info h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      font-family: 'Playfair Display', serif;
    }

    .product-rating {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .stars {
      color: #FF6A00;
      font-size: 1.2rem;
    }

    .review-count {
      color: #666;
      font-size: 0.95rem;
    }

    .product-detail-price {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      margin-bottom: 2rem;
    }

    .detail-description {
      color: #666;
      line-height: 1.8;
      margin-bottom: 2rem;
      font-size: 1.05rem;
    }

    .product-features {
      background: rgba(255, 106, 0, 0.05);
      padding: 2rem;
      border-radius: 15px;
      margin-bottom: 2rem;
    }

    .product-features h3 {
      font-size: 1.3rem;
      margin-bottom: 1rem;
      color: #333;
    }

    .product-features ul {
      list-style: none;
      padding-left: 0;
    }

    .product-features li {
      padding: 0.5rem 0;
      color: #666;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .product-features li:before {
      content: "✓";
      color: #FF6A00;
      font-weight: bold;
      font-size: 1.2rem;
    }

    .quantity-selector {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .quantity-selector button {
      background: #FF6A00;
      color: white;
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      font-size: 1.2rem;
      cursor: pointer;
      transition: all 0.3s;
    }

    .quantity-selector button:hover {
      background: #FF8C42;
    }

    .quantity-selector input {
      width: 60px;
      text-align: center;
      border: 2px solid #FF6A00;
      border-radius: 10px;
      padding: 0.5rem;
      font-size: 1.1rem;
      font-weight: 600;
    }

    .detail-add-cart {
      background: #FF6A00;
      color: white;
      border: none;
      padding: 1.2rem 3rem;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s;
      display: flex;
      align-items: center;
      gap: 1rem;
      justify-content: center;
      width: 100%;
      box-shadow: 0 6px 20px rgba(255, 106, 0, 0.3);
    }

    .detail-add-cart:hover {
      background: #FF8C42;
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(255, 106, 0, 0.4);
    }

    /* Shopping Cart */
    .cart-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .cart-empty {
      text-align: center;
      padding: 4rem 0;
    }

    .cart-empty-icon {
      font-size: 5rem;
      margin-bottom: 1rem;
      opacity: 0.5;
    }

    .cart-items {
      background: white;
      border-radius: 20px;
      padding: 2rem;
      margin-bottom: 2rem;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .cart-item {
      display: grid;
      grid-template-columns: 100px 1fr auto;
      gap: 2rem;
      padding: 1.5rem 0;
      border-bottom: 1px solid #f0f0f0;
      align-items: center;
    }

    .cart-item:last-child {
      border-bottom: none;
    }

    .cart-item-image {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 10px;
    }

    .cart-item-info h3 {
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
    }

    .cart-item-price {
      color: #FF6A00;
      font-size: 1.3rem;
      font-weight: 700;
    }

    .cart-item-controls {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-top: 1rem;
    }

    .cart-item-quantity {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .cart-qty-btn {
      background: #FF6A00;
      color: white;
      border: none;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      cursor: pointer;
      transition: all 0.3s;
    }

    .cart-qty-btn:hover {
      background: #FF8C42;
    }

    .cart-remove-btn {
      background: transparent;
      color: #e74c3c;
      border: 2px solid #e74c3c;
      padding: 0.5rem 1rem;
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.3s;
      font-weight: 600;
    }

    .cart-remove-btn:hover {
      background: #e74c3c;
      color: white;
    }

    .cart-summary {
      background: white;
      border-radius: 20px;
      padding: 2rem;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .cart-summary h2 {
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
    }

    .cart-summary-row {
      display: flex;
      justify-content: space-between;
      padding: 1rem 0;
      border-bottom: 1px solid #f0f0f0;
    }

    .cart-summary-row.total {
      border-bottom: none;
      font-size: 1.5rem;
      font-weight: 700;
      color: #FF6A00;
      padding-top: 1.5rem;
    }

    .cart-checkout-btn {
      width: 100%;
      background: #FF6A00;
      color: white;
      border: none;
      padding: 1.2rem;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s;
      margin-top: 1.5rem;
    }

    .cart-checkout-btn:hover {
      background: #FF8C42;
      transform: scale(1.02);
    }

    /* Flash Sale Section */
    .flash-sale {
      background: linear-gradient(135deg, #FF6A00, #FF8C42);
      color: white;
      text-align: center;
      border-radius: 30px;
      padding: 3rem 2rem;
      max-width: 1200px;
      margin: 0 auto;
      box-shadow: 0 10px 40px rgba(255, 106, 0, 0.3);
    }

    .flash-sale h2 {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      font-weight: 700;
    }

    .timer {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin: 2rem 0;
      flex-wrap: wrap;
    }

    .timer-box {
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      padding: 1.5rem 2rem;
      border-radius: 15px;
      min-width: 100px;
    }

    .timer-value {
      font-size: 2.5rem;
      font-weight: 700;
      display: block;
    }

    .timer-label {
      font-size: 0.9rem;
      opacity: 0.9;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .flash-sale-btn {
      background: white;
      color: #FF6A00;
      padding: 1rem 3rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 700;
      display: inline-block;
      margin-top: 1rem;
      transition: all 0.3s;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
      cursor: pointer;
    }

    .flash-sale-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

    /* Reviews Section */
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .review-card {
      background: white;
      padding: 2rem;
      border-radius: 20px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.3s;
    }

    .review-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(255, 106, 0, 0.15);
    }

    .review-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .review-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: linear-gradient(135deg, #FF6A00, #FF8C42);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.5rem;
      font-weight: 700;
    }

    .review-info h4 {
      font-size: 1.1rem;
      color: #333;
      margin-bottom: 0.3rem;
    }

    .review-text {
      color: #666;
      line-height: 1.7;
      font-size: 0.95rem;
    }

    /* Newsletter Section */
    .newsletter {
      background: linear-gradient(135deg, rgba(255, 106, 0, 0.05), rgba(255, 140, 66, 0.05));
      padding: 4rem 5%;
      text-align: center;
      border-radius: 30px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .newsletter h2 {
      font-size: 2.2rem;
      margin-bottom: 1rem;
      color: #333;
      font-weight: 700;
    }

    .newsletter p {
      color: #666;
      margin-bottom: 2rem;
      font-size: 1.1rem;
    }

    .newsletter-form {
      display: flex;
      gap: 1rem;
      max-width: 600px;
      margin: 0 auto;
      flex-wrap: wrap;
      justify-content: center;
    }

    .newsletter-input {
      flex: 1;
      min-width: 250px;
      padding: 1rem 1.5rem;
      border: 2px solid #FF6A00;
      border-radius: 50px;
      font-size: 1rem;
      outline: none;
      transition: all 0.3s;
    }

    .newsletter-input:focus {
      box-shadow: 0 0 15px rgba(255, 106, 0, 0.2);
    }

    .newsletter-buttons {
      display: flex;
      gap: 1rem;
    }

    .btn-subscribe {
      background: #FF6A00;
      color: white;
      border: none;
      padding: 1rem 2rem;
      border-radius: 50px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      font-size: 1rem;
    }

    .btn-subscribe:hover {
      background: #FF8C42;
      transform: scale(1.05);
    }

    .btn-unsubscribe {
      background: transparent;
      color: #FF6A00;
      border: 2px solid #FF6A00;
      padding: 1rem 2rem;
      border-radius: 50px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      font-size: 1rem;
    }

    .btn-unsubscribe:hover {
      background: #FF6A00;
      color: white;
    }

    /* Footer */
    .footer {
      width: 100%;
      background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
      color: white;
      padding: 4rem 5% 2rem;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
      max-width: 1400px;
      margin: 0 auto 3rem;
    }

    .footer-section h3 {
      font-size: 1.3rem;
      margin-bottom: 1.5rem;
      color: #FF6A00;
      font-weight: 600;
    }

    .footer-section ul {
      list-style: none;
    }

    .footer-section ul li {
      margin-bottom: 0.8rem;
    }

    .footer-section a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: color 0.3s;
      font-size: 0.95rem;
      cursor: pointer;
    }

    .footer-section a:hover {
      color: #FF6A00;
    }

    .footer-section p {
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.7;
      font-size: 0.95rem;
    }

    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.9rem;
    }

    /* Modal Styles */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(5px);
      z-index: 2000;
      align-items: center;
      justify-content: center;
      overflow-y: auto;
      padding: 2rem;
    }

    .modal.active {
      display: flex;
    }

    .modal-content {
      background: white;
      padding: 3rem;
      border-radius: 25px;
      max-width: 600px;
      width: 90%;
      max-height: 85%;
      overflow-y: auto;
      box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
      position: relative;
      animation: modalSlideIn 0.3s ease;
    }

    @keyframes modalSlideIn {
      from {
        transform: translateY(-50px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .modal-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      background: none;
      border: none;
      font-size: 2rem;
      cursor: pointer;
      color: #999;
      transition: color 0.3s;
      z-index: 1;
    }

    .modal-close:hover {
      color: #FF6A00;
    }

    .modal-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      color: #333;
    }

    .modal-title span {
      background: linear-gradient(135deg, #FF6A00, #FF8C42);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .modal-body {
      color: #666;
      line-height: 1.8;
      font-size: 1rem;
    }

    .modal-body h3 {
      color: #333;
      margin: 1.5rem 0 1rem;
      font-size: 1.3rem;
    }

    .modal-body ul, .modal-body ol {
      margin: 1rem 0 1rem 1.5rem;
    }

    .modal-body li {
      margin-bottom: 0.5rem;
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      color: #333;
      font-weight: 500;
      font-size: 0.95rem;
    }

    .form-group input, .form-group textarea {
      width: 100%;
      padding: 1rem;
      border: 2px solid #e0e0e0;
      border-radius: 10px;
      font-size: 1rem;
      transition: all 0.3s;
      outline: none;
      font-family: 'Montserrat', sans-serif;
    }

    .form-group textarea {
      min-height: 120px;
      resize: vertical;
    }

    .form-group input:focus, .form-group textarea:focus {
      border-color: #FF6A00;
      box-shadow: 0 0 10px rgba(255, 106, 0, 0.1);
    }

    .form-submit {
      width: 100%;
      background: #FF6A00;
      color: white;
      border: none;
      padding: 1rem;
      border-radius: 10px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      margin-top: 1rem;
    }

    .form-submit:hover {
      background: #FF8C42;
      transform: scale(1.02);
    }

    .form-toggle {
      text-align: center;
      margin-top: 1.5rem;
      color: #666;
      font-size: 0.95rem;
    }

    .form-toggle a {
      color: #FF6A00;
      text-decoration: none;
      font-weight: 600;
      cursor: pointer;
    }

    .form-toggle a:hover {
      text-decoration: underline;
    }

    .message {
      padding: 1rem;
      border-radius: 10px;
      margin-bottom: 1rem;
      text-align: center;
      font-size: 0.95rem;
    }

    .message.success {
      background: rgba(76, 175, 80, 0.1);
      color: #4CAF50;
      border: 1px solid #4CAF50;
    }

    .message.error {
      background: rgba(244, 67, 54, 0.1);
      color: #F44336;
      border: 1px solid #F44336;
    }

    /* Responsive Design */
    @media (max-width: 968px) {
      .product-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 1rem;
      }

      .cart-item-actions {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 768px) {
      .nav-menu {
        display: none;
      }

      .hero {
        flex-direction: column;
        min-height: auto;
      }

      .hero-left {
        padding: 3rem 2rem;
        min-height: 70%;
      }

      .hero-right {
        min-height: 50%;
        padding: 2rem;
      }

      .hero h1 {
        font-size: 2.5rem;
      }

      .hero p {
        font-size: 1rem;
      }

      .section-title {
        font-size: 2rem;
      }

      .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
      }

      .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
      }

      .newsletter-form {
        flex-direction: column;
      }

      .newsletter-buttons {
        flex-direction: column;
        width: 100%;
      }

      .btn-subscribe, .btn-unsubscribe {
        width: 100%;
      }

      .modal-content {
        padding: 2rem;
        width: 95%;
      }

      .timer {
        gap: 1rem;
      }

      .timer-box {
        padding: 1rem 1.5rem;
        min-width: 80px;
      }

      .timer-value {
        font-size: 2rem;
      }
    }
  /* Navbar base */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.5rem;
  background-color: transparent;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  flex-wrap: wrap;
  gap: 1rem;
}

/* Logo */
.logo svg {
  width: 100%;
  max-width: 220px;  /* max size on desktop */
  height: auto;
  cursor: pointer;
}

/* Nav menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-menu li a:hover {
  color: #FF6A00;
}

/* Auth buttons */
.auth-buttons {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

/* Hamburger menu for mobile */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #FF6A00;
  border-radius: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .nav-menu {
    display: none; /* hide menu initially on mobile */
    width: 100%;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0.5rem;
  }
  .nav-menu.active {
    display: flex; /* show menu when hamburger clicked */
  }
  .hamburger {
    display: flex;
  }
  .logo svg {
    max-width: 180px;
  }
}

@media (max-width: 480px) {
  .logo svg {
    max-width: 140px;
  }
  .nav-menu {
    gap: 0.5rem;
  }
}
