/* Standardized Typography */
:root {
    --primary-bg: #FFFFFF;
    --secondary-bg: #F9F9F9;
    --heading-color: #D87058;
    --subheading-color: #7C3626;
    --body-color: #2B3840;
    --cta-bg: #2B3840;
    --footer-bg: #4C5B61;
    --highlight-color: #F47D3A;
}

/* Headings */
h1, h2, h3 {
    color: var(--heading-color) ;
    font-family: "Helvetica", sans-serif ;
    font-weight: bold ;
}

h1 {
    font-size: 40px ;
    line-height: 1.4;
}

h2 {
    font-size: 36px ;
    line-height: 1.3 ;
}

h3 {
    font-size: 24px ;
    line-height: 1.2;
}

/* Body Text */
body, p {
    font-size: 18px;
    line-height: 1.6;
}

/* Container for Centering Content */
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navbar Styling */
.banner {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

/* Scrolling Banner Styling */
.scrolling-banner {
    overflow: hidden;
    background-color: #000;
    color: #fff;
    white-space: nowrap;
    width: 100%;
    padding: 10px 0;
    position: relative;
}

.scrolling-banner p {
    display: inline-block;
    padding-left: 100%;
    /* Starts the text off-screen to the right */
    animation: scrollText 15s linear infinite;
    /* Adjust speed by changing '15s' */
    font-size: 16px;
    color: #fff;
    margin: 0;
}

/* Keyframes for scrolling effect */
@keyframes scrollText {
    from {
        transform: translateX(0);
        /* Start position */
    }

    to {
        transform: translateX(-100%);
        /* End position, scrolling off-screen to the left */
    }
}

.navbar {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
    transition: all 0.3s ease;
    margin-bottom: 0 !important;
}

.navbar a {
    color: #D87058;
}

.navbar a:hover {
    color: black;
}

.navbar-brand {
    padding: 0;
    margin-top: 15px;
}

.navbar-brand img {
    border-radius: 8px;
    width: 150px;
    height: auto;
}
.navbar-header {
    display: flex;
    align-items: center;
}

.logo {
    height: 60px;
    margin-right: 10px;
}

.brand-name {
    font-size: 16px;
    font-weight: bold;
    color: black;
    margin-left: -15px;
}

.navbar-links {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-grow: 1;
}

.navbar-links li {
    margin: 0 15px;
}

.navbar-links a {
    color: black;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
}

.navbar-links a:hover {
    color: #d87058;
}

.navbar-icons {
    display: flex;
    gap: 15px;
}

.navbar.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    /* Ensures visibility */
    padding: 15px 0;
}

/* Dropdown menu styling */
/* .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-menu {
    transition: opacity 0.3s ease;
    opacity: 0;
}

.navbar-nav .dropdown:hover .dropdown-menu {
    opacity: 1;
}

.dropdown-menu > li > a:hover {
    background-color: #D87058;
    color: #fff;
} */

.nav>li>a:hover{
    background-color: transparent;
}



.product-section {
    margin-top: 20px;
    padding-bottom: 40px;
}

/* Product Gallery */
.product-gallery {
    position: relative;
    border-radius: 8px;
    margin-bottom: 20px;
}

.carousel-inner>section.item>img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease;
    /* Adding transition to all images */
}

.carousel-inner>section.item>img:hover {
    transform: scale(1.05);
    /* Applies to all images on hover */
}

.carousel-control {
    color: #d87058;
}

.carousel-control:hover {
    color: #b7573e;
}

/* Thumbnail Gallery */
.gallery-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.gallery-thumbnails img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 4px;
    transition: transform 0.3s ease, border 0.3s ease;
    border: 2px solid transparent;
}

.gallery-thumbnails img:hover {
    transform: scale(1.1);
    border-color: #d87058;
}

.gallery-thumbnails img.active {
    border-color: #d87058;
}

/* Product Image Hover */
.main-product-image:hover {
    transform: scale(1.05);
}


/* Product Information */
.product-info {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.product-rating {
    color: #d87058;
    margin-bottom: 15px;
}

.product-rating .stars {
    color: #ff9800;
}

/* Color Options Styling */
.color-options {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

.color-button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.color-button.black {
    background-color: black;
}

.color-button.red {
    background-color: #d87058;
}

.color-button.blue {
    background-color: #73c2fb;
}

.color-button.green {
    background-color: #90ee90;
}

.color-button.peach {
    background-color: #f7cac9;
}

.color-button:hover,
.color-button.active {
    transform: scale(1.1);
    border-color: #d87058;
    /* Changes border to match the color accent */
}

/* Size Options Styling */
.size-options {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

.size-button {
    padding: 10px 15px;
    border: 2px solid #ddd;
    background-color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    font-weight: bold;
    border-radius: 20px;
}

.size-button.active,
.size-button:hover {
    background-color: #d87058;
    color: #fff;
    border-color: #d87058;
}

/* assembly Options Styling */
.assembly-options {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

.assembly-button {
    padding: 10px 15px;
    border: 2px solid #ddd;
    background-color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    font-weight: bold;
    border-radius: 20px;
}

.assembly-button.active,
.assembly-button:hover {
    background-color: #d87058;
    color: #fff;
    border-color: #d87058;
}

/* General Styling for Active and Hover */
button.active {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

button:hover {
    transform: translateY(-2px);
}

/* Modal Container */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 1000;
    /* On top of other elements */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    /* Black background with transparency */
}

/* Modal Content Box */
.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 40%;
    /* Adjust width as needed */
    text-align: center;
    position: relative;
}
.modal-content h2 {
  color: #d87058;
}

/* Close Button */
.close-button {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #d87058;
}

/* Size Chart Table Styling */
.size-chart-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.size-chart-table th,
.size-chart-table td {
    border-bottom: 1px solid #ddd;
    padding: 10px;
}

.size-chart-table th {
    background-color: #f1f1f1;
}

.size-chart-table td {
    font-size: 16px;
}

.size-chart {
    color: #d87058;
    text-decoration: underline;
    cursor: pointer;
    display: block;
    margin: 15px 0;
}



/* Price and Add to Cart */
.price-add-to-cart {
    margin-top: 25px;
}

.price {
    font-size: 1.8rem;
    color: #d87058;
    font-weight: bold;
}

.discount-info {
    font-size: 1.4rem;
    color: #888;
}

.add-to-cart-button {
    background-color: #d87058;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-top: 15px;
}

.add-to-cart-button:hover {
    background-color: #b7573e;
}

.shipping-info {
    font-size: 0.9rem;
    color: #555;
    margin-top: 15px;
}

/* Product Features Section Styling */
.product-features {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 20px 0;
    border-top: 1px solid #ddd;
    /* Separate section from the product information */
    border-bottom: 1px solid #ddd;
}

.feature-item {
    text-align: center;
    max-width: 120px;
    /* Ensure the features do not take too much space */
}

.feature-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.4;
    margin: 0;
}


/* Description Section */
.description-section {
    margin-top: 60px;
    padding-bottom: 40px;
}

.description-section h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.description-section p {
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1rem;
}

.assembly-video {
    color: #d87058;
    text-decoration: underline;
    cursor: pointer;
}

/* Frequently Bought Together */
.frequently-bought-together {
    margin-top: 60px;
    padding: 20px 0;
}

.frequently-bought-together h2 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.products-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.product-card {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 250px;
    flex: 1;
}

.product-card img {
    width: 100%;
    border-radius: 8px;
}

.product-card h4 {
    font-size: 1.1rem;
    margin-top: 10px;
}

.product-card .price {
    font-size: 1.1rem;
    color: #d87058;
    font-weight: bold;
    margin: 10px 0;
}

.product-card .add-to-cart {
    background-color: #d87058;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.product-card .add-to-cart:hover {
    background-color: #b7573e;
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
    .product-section {
        flex-direction: column;
    }

    .product-info {
        margin-top: 20px;
    }

    .products-list {
        flex-direction: column;
    }
}

/* General Support Section Styling */
.support-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 5%;
    background-color: #f7f8fa; /* Light grey for subtle background contrast */
}

/* Individual Support Item */
.support-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow to make it pop */
    border-radius: 10px; /* Smooth rounded corners */
    overflow: hidden;
    background: white; /* White background to make the text more readable */
    padding: 2rem; /* Padding to provide space inside the flex container */
}

/* Reverse Layout for Alternating Content */
.support-item.reverse {
    flex-direction: row-reverse; /* Swap image and text for alternate sections */
}

/* Styling for Images */
.support-img {
    flex: 1;
    max-width: 50%;
    height: auto;
    object-fit: cover;
    border-radius: 10px; /* Smooth corners */
}

/* Styling for Text */
.support-text {
    flex: 1;
    text-align: left;
}

.support-text h2 {
    font-size: 1.8rem;
    color: #333; 
    margin-bottom: 1rem;
}

.support-text .tagline {
    font-weight: bold;
    font-style: italic;
    color: #d87058; 
    margin-bottom: 1rem;
}

.support-text .description {
    line-height: 1.6;
    color: #555; /* Softer color for readability */
}

/* Mobile Friendly View */
@media (max-width: 768px) {
    .support-section {
        padding: 1.5rem;
    }
    .support-item {
        flex-direction: column; /* Stack vertically for mobile view */
        padding: 1.5rem;
    }
    .support-img {
        max-width: 100%;
        border-radius: 10px 10px 0 0; /* Round top corners for image in column layout */
    }
    .support-text {
        text-align: center;
        padding: 1.5rem;
    }
}


/* Featured On Section Styling */
.featured-on-section {
    margin: 40px auto;
    padding: 20px 0;
}

.featured-on-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #d87058;
}

.featured-on-carousel {
    display: flex;
    gap: 20px;
}

.featured-card {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    background-color: #d87058;
    transition: transform 0.3s ease;
    width: 250px;
    box-sizing: border-box;
    margin: 0 20px ;
}

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

.featured-thumbnail {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.featured-content h4 {
    font-size: 1.6rem;
    font-weight: bolder;
    color: #f9f9f9;
}

.featured-content h5 {
    font-size: 1.4rem;
    color: #f9f9f9;
    margin-bottom: 10px;
}

.featured-content p {
    font-size: 1rem;
    color: #f9f9f9;
}

/* Review Section Styling */
.review-section {
    margin-top: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    max-width: 100%;
    margin-bottom: 20px;
    /* Use 100% width of the container to align with other sections */
}

.review-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #d87058;
}

.review-list {
    margin-bottom: 20px;
    width: 100%;
    /* Ensure the review list takes up the full width */
}

.review-user-info {
    color:#d87058;
    font-size: 1.6rem;
 }

 .review-verified {
    color:#fff;
    background-color: #1cc286;
    border-radius: 8px;
    padding: 2px;
    font-size: 1.2rem;
 }
 
 

.review-item {
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
    width: 100%;
    /* Ensure each review item takes up the full width */
}
.review-body img {
   height: 150px;
}

/* Pagination Styling */
.review-pagination {
    text-align: center;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    /* Add some spacing between pagination numbers */
}

.page-number,
.next-page,
.last-page {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 5px;
    color: #d87058;
    cursor: pointer;
    border-radius: 4px;
    font-size: 1rem;
}

.page-number.current {
    background-color: #d87058;
    color: white;
}

.page-number:hover,
.next-page:hover,
.last-page:hover {
    background-color: #d87058;
    color: white;
}

/* Lightbox Styles */
.lb-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}
.lb-modal img {
    width: auto;
    height: 100%;
}
.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.close-lightbox {
    position: absolute;
    top: 10px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}


.faq-section {
    display: block;
    /* Ensures it doesn't use flex or grid properties from container */
    padding: 20px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    color: #333;
    font-family: Arial, sans-serif;
    margin-bottom: 20px;
}



.faq-title {
    color: #d87058;
    /* Accent color */
    font-weight: bold;
    margin-bottom: 20px;
}


/* FAQ Item Styling */
.faq-item {
    display: block;
    /* Ensures each item stacks vertically */
    width: 100%;
    border-bottom: 1px solid #ddd;
    padding: 5px 0;
    transition: background-color 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.4rem;
    font-weight: bold;
    cursor: pointer;
    color: #333;
    padding: 10px 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    font-size: 1.2rem;
    color: #555;
    margin-top: 10px;
    padding: 0 10px;
}

.faq-answer.open {
    max-height: 300px;
    padding: 10px 10px;
}

/* Styling for active question */
.faq-question.active {
    color: #d87058;
}

/* Plus/Minus icon styling */
.faq-question span:last-child {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-question.active span:last-child {
    transform: rotate(180deg);
}
/* Footer Styling */
.footer {
    background-color: #4C5B61; /* Dark background color */
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    color: #ffffff; /* White text color */
}

.footer-content {
    display: flex; /* Flexbox layout */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: space-between; /* Equal space between columns */
    align-items: flex-start; /* Align items to the top */
    max-width: 1200px; /* Centered container width */
    margin: 0 auto;
    gap: 10px; /* Reduced gap between columns */
}

.footer-logo-section {
    flex: 1 1 300px;
    text-align: left;
    margin-bottom: 20px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 15px;
}

.footer-description {
    font-size: 14px;
    margin-bottom: 20px;
    color: #ffffff;
    width: 90%;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.footer-social-icons a {
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 30px;
}

.footer-social-icons a:hover {
    color: #d1d5d8; /* Lighter hover effect */
}

.footer-links {
    display: flex;
    flex-wrap: wrap; /* Ensure wrapping for smaller screens */
    gap: 20px; /* Reduced space between columns */
    text-align: left;
    flex: 3 1 auto; /* Adjust size based on available space */
}

.footer-column {
    flex: 1 1 150px; /* Equal size columns */
    margin-bottom: 20px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffffff;
}

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

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

.footer-column ul li a {
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Move Legal Section Up */
.footer .footer-column:last-child {
    align-self: flex-start; /* Align "Legal" with other columns */
}

/* Bottom Section */
.footer-bottom {
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
    color: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column; /* Stack items vertically on small screens */
        text-align: center;
        gap: 20px; /* Adjust gap for smaller screens */
    }

    .footer-column {
        text-align: center; /* Center-align columns */
    }

    .footer-social-icons {
        justify-content: center; /* Center social icons */
    }
}
/* Cart section */
/* Overall Cart Styling */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Adjust opacity as needed */
    opacity: 0;
    /* Initially hidden */
    visibility: hidden;
    /* Initially hidden */
    transition: opacity 0.3s ease;
    z-index: 999;
    /* Make sure it's above other content */
}

.cart-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    max-width: 100%;
    height: 100%;
    background: white;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    padding: 20px;
    z-index: 1000;
    transition: right 0.3s ease;
    font-family: Arial, sans-serif;
}

.cart-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.cart-content {
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    max-height: 60vh;
    overflow-y: auto;
}

/* Cart Item Styling */
.cart-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    background-color: #fafafa;
}

.cart-item-img {
    width: 80px;
    height: auto;
    margin-right: 15px;
    border-radius: 8px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.cart-item-color {
    color: #666;
    margin-bottom: 8px;
}

/* Quantity Styling */
.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity-btn {
    width: 25px;
    height: 25px;
    border: 1px solid #ddd;
    background-color: #f5f5f5;
    color: #333;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.quantity-btn:hover {
    background-color: #e0e0e0;
}

.quantity-input {
    width: 40px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    color: #333;
}
.checkout-btn {
    background-color: #d87058;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
}

/* Price Styling */
.cart-item-price {
    color: #333;
    font-weight: bold;
    margin-top: 10px;
}

/* Footer Styling */
.cart-footer {
    text-align: center;
    padding-top: 20px;
}

.cart-subtotal {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.cart-shipping-info {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 20px;
}

.view-cart-btn {
    background-color: #d87058;
    color: white;
    padding: 12px 25px;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.view-cart-btn:hover {
    background-color: #b2573e;
}

/* Close Button Styling */
.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    color: #333;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #d87058;
}

/* Default settings for the hamburger menu (hidden for larger screens) */
.hamburger-menu {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
}

/* Navbar links styling for desktop */
#navbarMenu {
    display: flex;
    gap: 20px;
}



/* Mobile-specific styles */
@media (max-width: 767px) {

    /* Show hamburger menu button on mobile */
    .hamburger-menu {
        display: block;
        position: absolute;
        left: 10px;
        top: 15px;
        z-index: 1001;
    }

    /* Hide navbar links by default */
    #navbarMenu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.95);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        padding-top: 60px;
        /* Adjust for the menu icon */
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        margin: 0;
    }

    /* Menu open state */
    #navbarMenu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    /* Style for links in the sliding menu */
    #navbarMenu li {
        margin: 15px 0;
        text-align: center;
    }

    #navbarMenu li a {
        font-size: 1.2rem;
        color: #333;
    }

    /* Optional: style for icons inside the mobile menu */
    #navbarMenu li a i {
        margin-right: 8px;
    }


}




/* Search Modal Styling */
.search-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
}

.search-modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    width: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.search-modal-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.search-modal-content input {
    width: 80%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.search-modal-content button {
    padding: 10px 20px;
    background-color: #c4422a;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.search-modal-content button:hover {
    background-color: #a83224;
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover {
    color: black;
}

/* Error message styling */
.error-message {
    color: #d9534f; /* Red color for error text */
    margin-top: 10px;
    font-size: 14px;
    display: none; /* Initially hidden */
}
