 :root {
      --primary: #4f46e5;
      --primary-light: #6366f1;
      --dark: #1e1e1e;
      --light: #f8fafc;
      --gray: #6b7280;
      --light-gray: #e5e7eb;
    }
    
    html {
      scroll-behavior: smooth;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
      line-height: 1.6;
      color: var(--dark);
      display: flex;
      flex-direction: column;
    }
    
    img {
      max-width: 100%;
      height: auto;
    }
    
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    /* Utility Classes */
    .text-center {
      text-align: center;
    }
    .btn {
      cursor: pointer;
      display: inline-block;
      padding: 10px 20px;
      background: var(--primary);
      color: white;
      text-decoration: none;
      border-radius: 5px;
      font-weight: 500;
      transition: background 0.3s;
    }
    .btn:hover {
      background: var(--primary-light);
    }
    .section {
      padding: 60px 0;
    }
    .section-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 20px;
    }
    .section-subtitle {
      font-size: 1.2rem;
      color: var(--gray);
      margin-bottom: 40px;
    }
    .red {
      font-weight: 120px;
      background: red;
      padding: 0px 5px;
      color: white;
      border-radius: 10px;
    }
    .orange {
      font-weight: 120px;
      background: orange;
      padding: 0px 5px;
      color: white;
      border-radius: 10px;
    }
    .none {
      display: none;
    }
    
    /*slide in*/
    .slide-in {
      transform: translateX(-100%);
      opacity: 0;
      transition: all 1.0s ease-out;
    }
    .slide-in.show {
      transform: translateX(0);
      opacity: 1;
      animation: slideIn 2s ease-in-out 0.00001s forwards;
    }

    @keyframes slideIn {
      0% {
        opacity: 0;
        transform: translateX(-100%);
      }
      100% {
        opacity: 1;
        transform: translateX(0%);
      }
    }
    
    
    #ham-container {
      width: 94vw;
      height: 50px;
      padding: 0px 15px;
      display: flex;
      justify-content: space-between;
      align-self: center;
      align-items: center;
      position: fixed;
      top: 20px;
      z-index: 1000;
      border-radius: 15px;
      box-shadow: 1px 4px 9px rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(8px);
    }
    #ham-container p {
      color: blue;
      font-size: 23px;
      font-family: Arial, Helvetica, sans-serif;
    }
    #hamburger {
      width: 40px;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      justify-content: center;
      border: none;
      background: none;
      padding: 0px;
      margin: 0px;
      gap: 5px;
    }
    #hamburger span {
      display: block;
      width: 2rem;
      height: 0.25rem;
      background: white;
      box-shadow: 3px 4px 5px rgba(0, 0, 0, 0.5);
      transition: transform 0.8s ease, opacity 0.3s ease;
    }
    #hamburger.open span:nth-child(1) {
      transform: rotate(45deg) translateY(12.5px);
    }
    #hamburger.open span:nth-child(2) {
      opacity: 0;
    }
    #hamburger.open span:nth-child(3) {
      transform: rotate(-45deg) translateY(-12.5px);
    }

    #menuOverlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 39;
      opacity: 0;
      transition: opacity 0.3s ease-in-out;
      display: none;
    }
    #menuOverlay.show-overlay {
      display: block;
      opacity: 1;
    }
    
    #sideMenu {
      position: fixed;
      top: 0;
      left: 0;
      width: 16rem;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background: white;
      color: black;
      padding-top: 50px;
      transform: translateX(-100%);
      transition: transform 0.3s ease-in-out;
      z-index: 40;
    }
    #sideMenu.show-menu {
      transform: translateX(0);
    }
    #sideMenu p {
      font-size: 14px;
      margin: 50px 0px 0px 40px;
      justify-self: flex-end;
    }
    #sideNav {
      display: flex;
      flex-direction: column;
      margin-top: 20px;
    }
    #sideNav a {
      color: black;
      cursor: pointer;
      padding: 8px;
      margin: 3px 0px 0px 28px;
      font-size: 18px;
      text-decoration: none;
      transform: translateX(-20px);
      border-radius: 5px;
      transition: all 0.5s ease-in-out;
    }
    #sideNav a:hover {
      border-left: 6px solid blue;
    }
   
    #sideMenu.show-menu nav a {
      opacity: 1;
      transform: translateX(0);
    }
    
    
    /* Hero Section */
    .hero {
      background-image: url(/pics/mountain.jpg);
      background-repeat: no-repeat;
      background-size: cover;
      color: white;
      overflow: hidden;
      padding: 80px 0;
    }
    
    .hero-content {
      max-width: 600px;
    }
    
    .hero-title {
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 20px;
      line-height: 1.2;
    }
    
    .hero-subtitle {
      font-size: 1.1rem;
      margin-bottom: 30px;
      opacity: 0.9;
    }
    
    .hero-buttons {
      display: flex;
      gap: 15px;
    }
    
    .btn-secondary {
      background: white;
      color: var(--primary);
    }
    
    /* stars */
    .star {
      color: #FFDC1C;
    }
    
    /* Products Section */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 20px;
    }
    
    .product-card {
      border: 1px solid var(--light-gray);
      border-radius: 10px;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .product-image {
      height: 200px;
      background: var(--light-gray);
      overflow: hidden;
    }
    .product-image img {
      width: 100%;
      transition: transform 0.5s;
    }
    .product-image img:hover {
      transform: scale(1.05);
    }
    
    .product-content {
      padding: 5px 20px 20px 20px;
    }
    
    .product-title {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 10px;
    }
    
    .price-container{
      display: flex;
      flex-direction: row;
      align-items: flex-start;
    }
    .product-price {
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--primary);
      margin: 4px 8px;
    }
    
    .product-description {
      color: var(--gray);
      margin-bottom: 20px;
    }
    
    .rating {
      display: flex;
      align-items: center;
      margin-bottom: 8px;
    }
    
    /* Categories */
    .categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 20px;
    }
    
    .category-card {
      height: 200px;
      border-radius: 8px;
      overflow: hidden;
      position: relative;
    }
    
    .category-card img {
      height: 100%;
      width: 100%;
    }

    .category-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: white;
      text-align: center;
    }
    
    .category-title {
      font-size: 1.4rem;
      font-weight: 600;
      margin-bottom: 10px;
    }
    
    #view-all {
      width: 95vw;
      display: flex;
      justify-content: center;
      margin-top: 20px;
    }
    #view-all a {
      text-decoration: none;
      color: #000;
    }
    
    /* Reasons */
    .reasons-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 30px;
    }
                                  
    .reasons-card {
      background: white;
      border-radius: 8px;
      padding: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }   
    .reasons {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .reasons-text {
      padding: 0px 0px 0px 10px;
    }
    .reasons-icon {
      height: 50px;
      width: 50px;
      padding-left: 10px;
    }
    .reasons-icon i {
      height: 200px;                                                                                                                                                                           
      color: blue;
    }

    /* Testimonials */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 30px;
    }
    
    .testimonial-card {
      background: white;
      border-radius: 8px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .testimonial-content {
      font-style: italic;
      margin-bottom: 20px;
    }
    
    .testimonial-author {
      display: flex;
      align-items: center;
    }
    .author-id {
      padding: 0px 0px 0px 10px;
    }
    .author-avatar {
      height: 100px;
      width: 100px;
      overflow: hidden;
    }
    .author-avatar img {
      height: 100px;
      overflow: hidden;
      border-radius: 0px 10px 10px 10px;
    }
    
    /* Newsletter */
    .newsletter {
      background: var(--primary);
      color: white;
      padding: 60px 0;
    }
    
    .newsletter-form {
      display: flex;
      max-width: 500px;
      margin: 0 auto;
    }
    
    .newsletter-input {
      flex: 1;
      padding: 12px 20px;
      width: 70%;
      
      height: 40px;
      border: none;
      border-radius: 5px 0 0 5px;
      font-size: 1rem;
    }
    
    .newsletter-btn {
      padding: 12px 25px;
      background: #333;
      height: 40px;
      margin-top: 0px;
      color: white;
      border: none;
      border-radius: 0 5px 5px 0;
      cursor: pointer;
    }
    
    /* Footer */
    footer {
      background: #111;
      color: white;
      padding: 50px 0 20px;
    }
    
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }
    
    .footer-links li {
      margin-bottom: 10px;
      list-style: none;
    }
    
    .footer-links a {
      color: #bbb;
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .footer-links a:hover {
      color: white;
    }
    
    .copyright {
      padding-top: 20px;
      border-top: 1px solid #333;
      text-align: center;
      color: #777;
      font-size: 0.9rem;
    }
    
    /* Responsive 
    @media (max-width: 768px) {
      .navbar {
        flex-direction: column;
        gap: 20px;
      }
      
      .nav-links {
        gap: 15px;
      }
      
      .hero-buttons {
        flex-direction: column;
      }
      
      .newsletter-form {
        flex-direction: column;
      }
      
      .newsletter-input, .newsletter-btn {
        width: 100%;
        border-radius: 5px;
      }
      
      .newsletter-btn {
        margin-top: 10px;
      }
    } */
