<!-- Styles - Dont Touch -->
<style>
    .custom-search-box {
        display: flex;
        align-items: center;
        border: 1px solid #ccc;
        /* Border for the entire search box including button */
        outline: 1px solid #B22222;
        /* Green outline around the entire search box */
        border-radius: 4px;
        /* Rounded corners for the whole box */
    }

    .custom-search-input {
        padding: 0.5rem;
        border: none;
        /* Remove inner borders */
        border-radius: 4px 0 0 4px;
        font-size: 14px;
        width: 200px;
        /* Adjust width as needed */
        outline: none;
        /* Remove the individual outline */
    }

    .custom-search-button {
        background-color: #fff;
        border: none;
        /* Remove inner borders */
        padding: 0.5rem;
        border-radius: 0 4px 4px 0;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        outline: none;
        /* Remove the individual outline */
    }

    .custom-search-button svg {
        fill: #1F1F25;
        /* Ensure the icon color remains consistent */
    }
</style>
<style>
    /* For mobile */
    @media only screen and (max-width: 600px) {
        .header-top-area {
            background-color: red;
            /* Ensure the background is red */
            padding: 10px 0;
        }

        .header-top-area .container {
            display: flex;
            flex-direction: column;
            text-align: center;
        }

        .header-top-area .discount-area,
        .header-top-area .contact-number-area {
            margin-bottom: 5px;
        }

        .header-top-area .discount-area p,
        .header-top-area .contact-number-area p {
            color: white;
            margin: 0;
        }

        .header-top-area .contact-number-area a {
            color: white;
        }
    }
</style>

<style>
    /* Sidebar Styles */
    .side-bar {
        width: 320px;
        background-color: #fff;
        position: fixed;
        top: 0;
        right: -320px;
        height: 100%;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
        padding: 20px;
        transition: right 0.3s ease;
        z-index: 999;
    }

    .side-bar.active {
        right: 0;
    }

    /* Close Button Styles */
    .close-icon-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #333;
        z-index: 1001;
    }

    /* Account Section Styles */
    .account-section {
        text-align: left;
        margin-bottom: 20px;
        padding: 20px 0;
        border-bottom: 1px solid #ccc;
    }

    .account-header {
        display: flex;
        align-items: center;
    }

    .account-icon {
        font-size: 50px;
        color: #800000;
        margin-right: 10px;
    }

    .account-text {
        font-size: 18px;
        color: #800000;
        font-weight: bold;
    }

    .account-buttons {
        margin-top: 15px;
    }

    .login-btn,
    .signup-btn {
        display: block;
        background-color: #800000;
        color: #fff;
        text-decoration: none;
        font-size: 16px;
        margin: 5px 0;
        padding: 10px 20px;
        border-radius: 5px;
        border: none;
        text-align: center;
        transition: background-color 0.3s, color 0.3s;
    }

    .signup-btn {
        background-color: transparent;
        color: #800000;
        border: 1px solid #800000;
    }

    .signup-btn:hover {
        background-color: #800000;
        color: #fff;
    }

    /* Menu Items Styles */
    .menu-items ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .menu-items li {
        margin: 15px 0;
    }

    .menu-items a {
        color: #333;
        text-decoration: none;
        display: flex;
        align-items: center;
        font-size: 16px;
    }

    .menu-items i {
        margin-right: 15px;
        font-size: 18px;
        color: #666;
    }

    .badge {
        background-color: #007bff;
        color: #fff;
        padding: 2px 8px;
        border-radius: 10px;
        margin-left: auto;
        font-size: 12px;
    }

    /* Social Icons Styles */
    .social-icons {
        text-align: center;
        margin-top: 30px;
    }

    .social-icons p {
        margin-bottom: 10px;
        color: #333;
        font-weight: bold;
        text-transform: uppercase;
    }

    .social-icon {
        display: inline-block;
        color: #333;
        font-size: 24px;
        margin: 0 10px;
        transition: color 0.3s;
    }

    .social-icon:hover {
        color: #800000;
    }
</style>

<style>
    /* General Styles */
    * {
        box-sizing: border-box;
    }

    .main-container {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 1px;
        background-color: #f5f5f5;
    }

    .category-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0px;S
    }

    .category {
        flex: 1 1 calc(25% - 36px);
        /* Default to 4 items per row */
        margin: 18px;
        padding: 40px;
        text-align: center;
        background-color: #ffffff;
        border-radius: 10px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .category img {
        width: 100px;
        /* Fixed width */
        height: 100px;
        /* Fixed height */
        border-radius: 10px;
    }

    .category p {
        margin-top: 10px;
        font-size: 18px;
        font-weight: bold;
        color: #333;
        text-align: center;
        width: 100%;
    }

    .show-more-button-wrapper {
        text-align: center;
        margin-top: 15px;
        margin-bottom: -25px;
    }

    .show-more-button {
        display: inline-block;
        padding: 10px 20px;
        font-size: 16px;
        color: #000000;
        text-decoration: none;
        border-radius: 5px;
        margin-bottom: 30px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .category {
            flex: 1 1 calc(50% - 20px);
            /* 2 items per row */
            margin: 10px;
        }
    }

    @media (max-width: 480px) {
        .category {
            flex: 1 1 calc(100% - 20px);
            /* 1 item per row */
            margin: 10px 0;
        }
    }

    /* Responsive Design */
    @media (max-width: 600px) {
        .category {
            flex: 1 1 calc(50% - 20px);
            /* 2 items per row */
            margin: 10px;
        }
    }

    @media (max-width: 280px) {
        .category {
            flex: 1 1 calc(100% - 20px);
            /* 1 item per row */
            margin: 10px 0;
        }
    }

    .title-area-between {
        margin-top: 6px;
        /* Adjust the top margin as needed */
        padding-bottom: 10px;
        /* Adjust the padding-bottom as needed */
    }


    .title-left {
        font-family: 'Betm Rounded', 'Arial', sans-serif;


        /* Replace with the desired font */
        font-size: 22px;
        /* Adjust the size as needed */
        font-weight: bold;
        /* You can adjust the weight */
        color: #393838;
        /* Change the text color if needed */
        word-break: break-word;

    }

    .title-left1 {
        font-family: 'Betm Rounded', 'Arial', sans-serif;
        /* Replace with the desired font */
        font-size: 22px;
        /* Adjust the size as needed */
        font-weight: bold;
        /* You can adjust the weight */
        color: #282727;
        /* Change the text color if needed */
        margin-top: 15px;
    }

    .countdown {
        margin-top: 10px;
        /* Adjust the space between title and countdown if needed */
    }

    .countDown {
        font-size: 16px;
        /* Adjust font size if needed */
    }
</style>

<style>
    .title-container {
        text-align: center;
        margin-bottom: 20px;
        margin-top: 40px;
        /* Adjust this value for more or less space above the title */
    }

    
</style>
<style>
    .select-category {
        width: 100%;
    }

    .select-category .form-select {
        width: 100%;
        max-width: 100%;
        display: block;
        margin-bottom: 1rem;
        font-size: 16px;
        color: black;
        font-weight: 25px;
        font-family: sans-serif;
    }
</style>
<style>
    .rts--offer-area-start {
        margin-top: 50px;
        /* Adjust the value as needed */
        margin-bottom: 50px;
        /* Adjust the value as needed */
    }
</style>
<style>
    .custom-section {
        padding: 20px 0;
    }

    .video-image-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .video-container {
        position: relative;
        padding-bottom: 56.25%;
        /* 16:9 aspect ratio */
        overflow: hidden;
        width: 100%;
        height: auto;
    }

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .image-below-video img {
        width: 100%;
        height: auto;
        border: 1px solid #ddd;
        border-radius: 8px;
    }

    .product-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-content: space-between;
        height: 100%;
    }

    .feature-product-area-single {
        border: 1px solid #ddd;
        padding: 15px;
        border-radius: 8px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .feature-product-area-single:hover {
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    }

    .feature-product-area-single .inner-image img {
        width: 280px;
        /* Adjust this size based on your layout needs */
        height: auto;
        display: block;
    }

    .feature-product-area-single .inner-content {
        flex-grow: 1;
    }

    .feature-product-area-single .title {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 5px;
    }

    .feature-product-area-single .price-area {
        font-size: 16px;
        color: #555;
    }

    .feature-product-area-single .price {
        font-size: 20px;
        font-weight: bold;
        color: #333;
    }
</style>
<style>/* Default styles (for larger screens) */
.single-shopping-card-one {
    width: 100%;
    margin-bottom: 20px;
}

/* For mobile view */
@media (max-width: 768px) {
    .product-with-discount .row > .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .product-with-discount .single-shopping-card-one {
        margin-bottom: 10px; /* Adjust spacing if necessary */
    }
}
</style>