        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
        }

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

        /* Header Styles */
        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 40px;
        }

        .logo span {
            font-size: 24px;
            font-weight: bold;
            margin-left: 10px;
            color: #bc002d;
        }

				#logo{
					text-decoration: none;
				}

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
            padding: 5px 10px;
            border-radius: 4px;
        }

        nav ul li a:hover {
            color: #bc002d;
            background-color: #f5f5f5;
        }

        nav ul li a.active {
            color: #bc002d;
            font-weight: bold;
        }

        .auth-buttons {
            display: flex;
            gap: 10px;
        }

        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            border: none;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s;
        }

        .btn-signin {
            background-color: transparent;
            border: 1px solid #bc002d;
            color: #bc002d;
        }

        .btn-signin:hover {
            background-color: #bc002d;
            color: white;
        }

        .btn-register {
            background-color: #bc002d;
            color: white;
        }

        .btn-register:hover {
            background-color: #a00024;
        }


/* ----------- Product Display-------------- */

#c{
	text-align: center;
	color: #bc002d;

}
.cart-item {
  display: flex;
  align-items: center;
	width: 85vw;
  gap: 15px;
  margin: 15px 0;
  background-color: #f9f9f9;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.cart-item img {
  width: 220px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-item h1 {
  font-size: 18px;
  margin: 0;
}

.cart-item h5 {
  font-size: 14px;
  color: #555;
  margin: 5px 0 0;
}
.price{
	color: green;
	margin-left: 20px;

}
#total{
	color: rgb(26, 167, 26);
	text-align:center;
	font-size: 20px;
	background-color: #f9f9f9;
	margin-left: 87%;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
#total:hover{
	background-color: #bc002d;
  color: white;
}

.divWithPrice{
	display: flex;
	align-items: center;
	gap: 15px;
  margin: 15px 0;
  background-color: #f9f9f9;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.plusbtn{
  background-color: transparent;
  border: 1px solid #bc002d;
  color: #bc002d;
	width: 1.5vw;
	/* margin-left: auto; */
	margin-right: 2vw;

}

.plusbtn:hover {
  background-color: #bc002d;
  color: white;
}

.minusbtn{
  background-color: transparent;
  border: 1px solid #bc002d;
  color: #bc002d;
	width: 1.25vw;
	margin-left: auto;

}

.minusbtn:hover {
  background-color: #bc002d;
  color: white;
}


        /* Footer */
        footer {
            background-color: #333;
            color: white;
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: #bc002d;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column ul li a:hover {
            color: #bc002d;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #444;
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-icons a:hover {
            background-color: #bc002d;
            transform: translateY(-5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            color: #ccc;
            font-size: 14px;
        }

        /* Responsive Design
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                padding: 15px 0;
            }

            .logo {
                margin-bottom: 15px;
            }

            nav ul {
                margin-bottom: 15px;
            }

            nav ul li {
                margin: 0 10px;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero p {
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
            nav ul {
                flex-direction: column;
                align-items: center;
            }

            nav ul li {
                margin: 5px 0;
            }

            .auth-buttons {
                flex-direction: column;
                width: 100%;
            }

            .btn {
                width: 100%;
                margin-bottom: 10px;
            }

            .hero {
                padding: 60px 0;
            }

            .hero h1 {
                font-size: 28px;
            }

            .hero p {
                font-size: 16px;
            }

        } */

@media (max-width: 768px) {

  /* Header */
  .header-container {
    flex-direction: column;
    gap: 10px;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  /* Cart */
  .cart-item {
    flex-direction: column;
    width: 100%;
    text-align: center;
  }

  .cart-item img {
    width: 100%;
    height: auto;
  }

  .plusbtn,
  .minusbtn {
    width: 40px;
    margin: 10px;
  }

  .price {
    margin-left: 0;
    margin-top: 10px;
    font-size: 18px;
  }

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

  #total {
    margin: 20px auto;
    width: 90%;
    font-size: 18px;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {

  .cart-item {
    width: 100%;
  }

  .cart-item img {
    width: 180px;
    height: auto;
  }

  .plusbtn,
  .minusbtn {
    width: 30px;
  }

  #total {
    margin-left: auto;
    margin-right: 20px;
    font-size: 18px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
