 body {
     font-family: 'Poppins', sans-serif;
     color: #333;
     background-color: #f8f9fa;
     /* Light background for the page */
 }

 /* Top Header Styles */
 .top-header {
     background-color: #000;
     color: #fff;
     padding: 0.75rem 0;
     font-size: 0.875rem;
 }

 .top-header .header span {
     font-weight: bold;
     text-decoration: underline;
     cursor: pointer;
 }

 .top-header select {
     background-color: transparent;
     color: #fff;
     border: none;
     outline: none;
     padding: 0.25rem 0.5rem;
     font-size: 0.875rem;
 }

 .top-header select option {
     background-color: #000;
     color: #fff;
 }

 /* Navbar Customization */
 .navbar-brand {
     font-weight: 700;
     font-size: 1.75rem;
 }

 .navbar-nav .nav-link {
     font-weight: 500;
     transition: color 0.3s ease;
 }

 .navbar-nav .nav-link:hover {
     color: #DB4444 !important;
 }

 .navbar-nav .nav-link.active {
     color: #DB4444 !important;
 }

 .navbar-toggler:focus {
     box-shadow: none;
 }

 .dropdown-menu {
     line-height: 1.8rem;
 }

 .dropdown-menu a {
     text-decoration: none;
     color: #333;
 }

 .dropdown-menu a:hover {
     color: #DB4444;
     background-color: #f8f9fa;
 }

 /* Section Headings */
 .section-header-line {
     background-color: #DB4444;
     width: 1.3rem;
     height: 2.5rem;
     border-radius: 0.25rem;
 }

 .section-heading-text {
     color: #DB4444;
     font-weight: bold;
     font-size: 1.1rem;
 }

 .main-section-title {
     font-weight: bold;
     font-size: 2.2rem;
 }
.home:hover{
  color: #db4444 !important;
}
 /* Card Customization */
 .card {
     border: none;
     box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
     transition: transform 0.2s ease-in-out;
 }

 .card:hover {
     transform: translateY(-5px);
 }

 .card-img-wrapper {
     position: relative;
     width: 100%;
     padding-top: 100%;
     /* 1:1 aspect ratio */
     overflow: hidden;
     background-color: #F5F5F5;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .card-img-wrapper img {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     padding: 1rem;
 }

 .card-title {
     font-weight: 600;
     font-size: 1.15rem;
     margin-bottom: 0.5rem;
 }

 .card-text {
     font-weight: 600;
     color: #DB4444;
 }

 .card-text span {
     color: #000;
     margin-left: 0.5rem;
     text-decoration: line-through;
     font-weight: normal;
 }

 .star-rating img {
     width: 20px;
     height: 16px;
     margin-right: 0.1rem;
     object-fit: contain;
     background-color: transparent;
     padding: 0;
 }

 /* Footer Styles */
 footer {
     background-color: #000;
     color: #fff;
     padding: 4rem 0;
 }

 footer h3 {
     font-weight: bold;
     margin-bottom: 1.5rem;
 }

 footer p {
     font-size: 0.95rem;
     margin-bottom: 0.75rem;
 }

 footer .form-control {
     background-color: transparent;
     border-color: #fff;
     color: #fff;
 }

 footer .form-control::placeholder {
     color: #ccc;
 }

 footer .form-control:focus {
     background-color: transparent;
     border-color: #DB4444;
     box-shadow: none;
     color: #fff;
 }

 footer .social-icons img {
     width: 30px;
     height: 30px;
     filter: invert(1);
 }

 footer .qr-code {
     max-width: 100px;
     height: auto;
 }

 footer .app-store-btn {
     max-width: 120px;
     height: auto;
 }

 .footer-subscribe .input-group {
     max-width: 250px;
 }

 .footer-subscribe .input-group-text {
     background-color: transparent;
     border: 1px solid #fff;
     border-left: none;
     color: #fff;
 }

 /* --- NEW: Category-specific styles --- */
 .hero-beauty {
     background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./utils/images/beauty-hero.jpg') no-repeat center center;
     background-size: cover;
     min-height: 400px;
     /* Adjust height as needed */
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
 }

 .hero-beauty h1 {
     font-size: 3.5rem;
 }

 .hero-beauty p {
     font-size: 1.25rem;
 }

 .btn-light.text-danger:hover {
     background-color: #f8d7da !important;
     /* Lighter red for hover */
     transform: translateY(-2px);
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
 }

 .collection-card {
     border: 1px solid #e0e0e0;
     text-align: center;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     transition: background-color 0.2s ease, transform 0.2s ease;
     height: 100%;
     padding: 1.5rem 1rem;
     /* More padding for collection cards */
 }

 .collection-card:hover {
     background-color: #DB4444;
     color: white;
     transform: translateY(-5px);
 }

 .collection-card:hover img {
     filter: brightness(0) invert(1);
     /* Change icon to white on hover */
 }

 .collection-card img {
     max-width: 60px;
     /* Slightly larger icons for collections */
     height: auto;
     margin-bottom: 1rem;
     padding: 0;
     background-color: transparent;
 }

 /* --- Media Queries (from previous updates) --- */
 @media (max-width: 991.98px) {
     .side-image-container {
         padding-bottom: 0;
         padding-top: 1.5rem;
         text-align: center;
     }

     .side-image {
         max-width: 300px;
         height: auto;
         display: block;
         margin-left: auto;
         margin-right: auto;
     }

     .form-section {
         margin-top: 1.5rem;
     }
 }

 @media (max-width: 767.98px) {
     .carousel-item img {
         height: 15rem;
         object-fit: contain;
     }

     .hero-beauty h1 {
         font-size: 2.5rem;
         /* Smaller hero title on small screens */
     }

     .hero-beauty p {
         font-size: 1rem;
         /* Smaller hero text on small screens */
     }
 }

 @media (min-width: 992px) {
     .side-image-container {
         display: flex;
         align-items: center;
         justify-content: center;
         min-height: 100%;
         padding-top: 0;
         padding-bottom: 0;
     }

     .form-section {
         min-height: 100%;
         display: flex;
         flex-direction: column;
         justify-content: center;
         padding: 3rem;
         margin-top: 0;
     }

     .carousel-item img {
         height: 25rem;
     }
 }