/* Slideshow Container */
.custom-slideshow-container {
    position: relative;
    width: 100%;
    max-width: 2000px; /* Maximum width for larger screens */
    height: auto; /* Adjust height based on aspect ratio */
    aspect-ratio: 2000 / 637; /* Maintain the 2000:637 aspect ratio */
    overflow: hidden;
    margin: 0 auto; /* Center the container horizontally */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex; /* Center content within the container */
    justify-content: center;
    align-items: center;
    background: #f3f3f3; /* Fallback background color */
}

/* Individual Slides */
.custom-slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Ensure images cover the container and are properly positioned */
.custom-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image fully covers the container */
    object-position: center; /* Center the image */
}

.custom-slide.show {
    display: block;
    animation: fadeEffect 1s ease-in-out;
}

@keyframes fadeEffect {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Navigation Arrows */
.custom-prev, .custom-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
    color: white;
    font-size: 20px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    user-select: none;
    z-index: 10;
}

.custom-prev { left: 10px; }
.custom-next { right: 10px; }

/* Dots */
.custom-dot-container {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
}

.custom-dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.custom-active, .custom-dot:hover {
    background-color: #717171;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .custom-slideshow-container {
        max-width: 100%; /* Allow container to stretch full width */
    }

    .custom-prev, .custom-next {
        font-size: 18px;
        padding: 8px;
    }

    .custom-dot {
        height: 10px;
        width: 10px;
    }
}

@media screen and (max-width: 768px) {
    .custom-slideshow-container {
        border-radius: 5px; /* Slightly smaller border radius for compact screens */
    }

    .custom-prev, .custom-next {
        font-size: 16px;
        padding: 8px;
    }

    .custom-dot {
        height: 8px;
        width: 8px;
    }
}

@media screen and (max-width: 480px) {
    .custom-prev, .custom-next {
        font-size: 14px;
        padding: 5px;
    }

    .custom-dot {
        height: 6px;
        width: 6px;
    }
}

/*----------------------------*\
	Shop Our Range 
\*----------------------------*/

.sec-section4type2j5k4h2-main {
    margin: 30px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
}
.sec-section4type2j5k4h2-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}
.sec-section4type2j5k4h2-row {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}
.sec-section4type2j5k4h2-column {
    flex: 0 0 48%;
    background-color:rgb(224, 225, 250);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.sec-section4type2j5k4h2-subtitle {
    text-align: center;
    font-size: 18px;
    color: #444;
    margin-bottom: 15px;
}
.sec-section4type2j5k4h2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.sec-section4type2j5k4h2-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.sec-section4type2j5k4h2-img {
    width: 100%; /* Full width of the card */
    height: 250px; /* Fixed height for consistent sizing */
    object-fit: cover; /* Ensures the image is cropped proportionally to fill the space */
    border-radius: 5px;
    margin-bottom: 10px;
}

.sec-section4type2j5k4h2-name {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}
.sec-section4type2j5k4h2-price {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}
.sec-section4type2j5k4h2-price strong {
    color: #e74c3c;
    font-size: 16px;
}
.sec-section4type2j5k4h2-btn {
    padding: 8px 12px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}
.sec-section4type2j5k4h2-btn:hover {
    background: #0056b3;
}


/*----------------------------*\
	Modal And Header
\*----------------------------*/
   /* Modal Styles */
   .modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4); /* Black with opacity */
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #ccc;
    width: 80%;
    max-width: 500px;
    text-align: center;
    border-radius: 8px;
}

.modal-content h2 {
    margin-bottom: 15px;
}

.modal-content input {
    width: 80%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.modal-content button {
    padding: 10px 20px;
    background-color: #2873f0;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.modal-content button:hover {
    background-color: #1a5eb8;
}

.modal-content .close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #aaa;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

.modal-content .close:hover {
    color: #000;
}
/* Modal List Styles */
.modal-list {
    list-style: none;
    padding: 0;
}

.modal-list li {
    margin: 10px 0;
}

.modal-list li a {
    color: #2873f0;
    text-decoration: none;
}

.modal-list li a:hover {
    text-decoration: underline;
}

/* Main Header (Visible on larger screens) */
@media (min-width: 768px) {
    .header-ctn.responsive-header {
        display: none;
    }
}

/* Responsive Header (Visible on small screens) */
@media (max-width: 999px) {
    #header {
        display: none;
    }
    .header-ctn.responsive-header {
        display: block;
    }
}
@media (max-width: 999px) {
  #top-header {
    display: none; /* Hide the top-header */
  }
}
@media (min-width: 992px) {
    .mobile_header {
        display: none !important;
    }
}
.mobile_header {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        .mobile_header .header-1 {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background-color: #f8f9fa;
            padding: 10px;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }

        .mobile_header .logo {
            flex: 0 0 auto;
        }

        .mobile_header .logo img {
            height: 40px;
        }

        .mobile_header .search-bar {
            flex: 1 1 auto;
            display: flex;
            margin-left: 10px;
        }

        .mobile_header .search-bar input[type="text"] {
            flex: 1;
            padding: 8px;
            border: 1px solid #ccc;
            border-right: none;
            border-radius: 40px 0px 0px 40px;
        }

        .mobile_header .search-bar button {
            padding: 8px 12px;
            border: 1px solid #ccc;
            border-left: none;
            background-color: #007bff;
            color: #fff;
            border-radius: 0px 40px 40px 0px;
            cursor: pointer;
        }

        .mobile_header .search-bar button:hover {
            background-color: #0056b3;
        }

        @media screen and (min-width: 999px) {
            .mobile_header .header-1 {
                position: static;
                box-shadow: none;
            }
        }

        
/* Full-page image section */
.offer_fulfillflex_image {
    position: relative;
    width: 90%; /* 90% width to allow 5% margin on both left and right */
    margin: 0 auto; /* Center the container horizontally */
    height: auto; /* Height will adjust based on width to maintain aspect ratio */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.offer_fulfillflex_image .full-image {
    width: 100%; /* Image will scale to fit the width of its container */
    height: auto; /* Height automatically adjusts to maintain the aspect ratio */
    object-fit: cover; /* Ensures the image covers the area while preserving its aspect ratio */
}

/* Full viewport height for larger screens */
@media (min-width: 768px) {
    .offer_fulfillflex_image {
        height: 100vh; /* Ensure image takes up full viewport height */
    }
}

/* Adjustments for smaller screens */
@media (max-width: 768px) {
    .offer_fulfillflex_image {
        width: 100%; /* Allow full width on smaller screens */
        height: auto; /* Allow height to adjust automatically for small screens */
    }

    .offer_fulfillflex_image .full-image {
        object-fit: contain; /* For smaller screens, ensure the entire image is visible */
    }
}