
	  
	      :root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Inter",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #384f4b; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #1bbca3; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #444444;  /* The default color of the main navmenu links */
  --nav-hover-color: #1bbca3; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #1bbca3; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f2f5f4;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0e1a18;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #203b37;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

        
        .product-card {
            width: 100%;
            border: 1px solid #ddd;
            border-radius: 0px;
            background-color: #fff;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            text-align: center;
			float:left;
        }
		
		
		
        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .product-card .content {
            padding: 15px;
        }
        .product-card h3 {
            margin: 0;
            font-size: 20px;
            color: #333;
        }
        .product-card p {
            margin: 10px 0;
            color: #777;
            font-size: 14px;
        }
        .product-card .price {
            font-size: 18px;
            color: #4caf50;
            font-weight: bold;
        }
        .product-card button {
            margin-top: 15px;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            background: linear-gradient(45deg, #007bff, #4caf50);
            color: #fff;
            font-size: 16px;
            cursor: pointer;
            transition: background 0.4s ease, transform 0.2s ease;
        }
        .product-card button:hover {
            background: linear-gradient(90deg, #ff5722, #007bff);
            transform: scale(1.05); /* Slightly enlarge the button */
        }



section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 74px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
}









/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), black 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

        .gradient-text {
            font-size: 20px;
            font-weight: bold;
            background: linear-gradient(90deg, lightgreen, green, lightgreen);
            background-size: 200%;
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            animation: gradient-animation 6s infinite ease-in-out;
        }

        @keyframes gradient-animation {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }
		
		
		
		
		.footer-bottom {
            background: #000;
            
            text-align: center;
            padding: 20px 10px;
            font-size: 1.2rem;
            background: linear-gradient(to right, blue, violet);
            -webkit-background-clip: text;
            background-clip: text;
        }

        .footer-bottom a {
            color: transparent;
            text-decoration: none;
            font-weight: bold;
            background: linear-gradient(to right, blue, violet);
            -webkit-background-clip: text;
            background-clip: text;
        }

        .footer-bottom a:hover {
            text-decoration: underline;
        }
		
		
		
		
        .navbar_cart a {
            text-decoration: none;
            font-size: 1.5rem;
            
            margin: 0 1rem;
            color: white;
            position: relative;
            display: inline-block;
            background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #1dd1a1, #ff6b6b);
            background-size: 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientText 3s infinite;
        }

        /* Animation for gradient text */
        @keyframes gradientText {
            0% {
                background-position: 0%;
            }
            50% {
                background-position: 100%;
            }
            100% {
                background-position: 0%;
            }
        }

        /* Hover effect to make it more interactive */
        .navbar_cart a:hover {
            animation-duration: 1.5s; /* Faster animation on hover */
        }

  


        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }
        table, th, td {
            border: 1px solid #ddd;
        }
        th, td {
            padding: 10px;
            text-align: center;
        }
        th {
            background-color: transparent;
            color: #000;
        }
        .remove-btn {
            background-color: #ff4d4d;
            color: #fff;
            padding: 5px 10px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }
        .checkout-form {
            margin-top: 20px;
        }
        .checkout-form input {
            display: block;
            width: 300px;
            margin-bottom: 10px;
            padding: 10px;
        }
        #checkoutButton {
            margin-top: 10px;
            padding: 10px 20px;
            background-color: #28a745;
            color: #fff;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }

	

        /* General Styles */
      

        .signup-container {
            background: #fff;
            padding: 3rem 2rem;
            border-radius: 0px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            width: 100%;
            max-width: 400px;
        }

        .form-header h2 {
            font-size: 28px;
            color: #1a7340;
            text-align: center;
            margin-bottom: 0.5rem;
        }

        .form-header p {
            font-size: 14px;
            color: #666;
            text-align: center;
            margin-bottom: 2rem;
        }

        .signup-form .form-group {
            position: relative;
            margin-bottom: 1.5rem;
        }

        .signup-form input, .signup-form select {
            width: 100%;
            padding: 0.9rem;
            font-size: 16px;
            border: 1px solid #ddd;
            border-radius: 50px;
            box-sizing: border-box;
            transition: all 0.3s ease;
        }

        .signup-form input:focus, .signup-form select:focus {
            outline: none;
            border-color: #1a7340;
            box-shadow: 0 0 5px rgba(26, 115, 64, 0.5);
        }

        .btn {
            width: 100%;
            padding: 0.9rem;
            font-size: 16px;
            border: none;
            border-radius: 50px;
            background: linear-gradient(135deg, #1a7340, #3e8f60);
            color: #fff;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn:hover {
            background: linear-gradient(135deg, #3e8f60, #1a7340);
            box-shadow: 0 5px 15px rgba(26, 115, 64, 0.4);
        }

        .signin-text {
            text-align: center;
            font-size: 14px;
            color: #666;
            margin-top: 1.5rem;
        }

        .signin-text a {
            color: #1a7340;
            text-decoration: none;
            font-weight: bold;
        }

        .signin-text a:hover {
            text-decoration: underline;
        }

        .response {
            text-align: center;
            margin-bottom: 1.5rem;
            font-size: 14px;
            color: green;
        }

        .response.error {
            color: red;
        }
