/* Reset all page margins */
* {
    margin: 0px;
    padding: 0;
    box-sizing: border-box;
}

/* Adjust WordPress default content area */
.site-content {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Reduce unwanted gap below the header */
.wp-block-group {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Hero Section */
.hero-section {
    background-color: #f8fcfc;
    text-align: center;
    padding: 40px 20px;
    margin-top: 5px;
}

.hero-content {
    max-width: 500px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

/* Search Bar in Hero Section */
.hero-section .woocommerce-product-search {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
    background: white;
    padding: 10px;
    border-radius: 25px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}

.hero-section .search-field {
    flex: 1;
    padding: 10px;
    border: none;
    font-size: 16px;
    outline: none;
}

.hero-section .search-submit {
    background-color: #0077cc;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
}

.hero-section .search-submit:hover {
    background-color: #005ea6;
}

/* Quick Access Section */
.quick-access {
    text-align: center;
    padding: 20px 10px;
    background: #f9f9f9;
    overflow: hidden;
}

/* Scrollable Container */
.quick-access-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    white-space: nowrap;
    padding: 3px 0;
}

/* Hide Scrollbar */
.quick-access-container::-webkit-scrollbar {
    display: none;
}

/* Quick Access Cards */
.quick-access-scroll {
    display: flex;
    gap: 12px;
}

.quick-access-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #333;
    font-size: 14px;
    width: 110px; /* Fixed width to make it scrollable */
    flex: 0 0 auto;
    transition: all 0.3s ease;
}

.quick-access-card:hover {
    background: #10847E;
    color: white;
}

.quick-access-card img {
    width: 80px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 0px;
}

/* Responsive */
@media (max-width: 768px) {
    .quick-access-card {
        width: 100px; /* Smaller width for mobile */
    }
}

.product-categories {
    text-align: center;
    padding: 20px;
}

/* Reduce space between offer section and categories */
.offer-section {
    margin-bottom: 10px; /* Reduce space below offer section */
}

.product-categories {
    margin-top: 10px; /* Reduce space above category section */
    padding: 20px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    justify-content: center;
    padding: 10px;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.category-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid #ddd;
}

.category-item p {
    margin-top: 5px;
    font-size: 14px;
}

.view-all-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background: #0077cc;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
}

.short-book-section {
    background: #EAF1FF; /* Light blue background */
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    margin: 20px auto;
}

.short-book-container {
    text-align: center;
}

.short-book-content h3 {
    font-size: 18px;
    font-weight: bold;
    color: #004AAD; /* Dark blue heading */
}

.short-book-content p {
    font-size: 14px;
    color: #555;
}

.short-book-btn {
    display: inline-block;
    padding: 8px 15px;
    background: #004AAD; /* Dark blue button */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

.short-book-btn i {
    margin-right: 5px;
}

/* Dropdown Styling */
.short-book-dropdown {
    margin-top: 10px;
    text-align: center;
}

.dropdown-toggle {
    width: 100%;
    padding: 10px;
    border: none;
    background: none;
    font-size: 14px;
    color: #004AAD;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    background: white;
    padding: 10px;
    text-align: left;
    border-radius: 5px;
    margin-top: 5px;
}

.dropdown-content ul {
    list-style-type: none;
    padding: 0;
}

.dropdown-content li {
    font-size: 12px;
    padding: 8px 0;
    border-left: 3px solid #004AAD; /* Dark blue left border */
    padding-left: 10px;
    margin-bottom: 5px;
    font-weight: bold;
}


/* Show dropdown when active */
.show {
    display: block;
}
.slider-container {
    margin-bottom: 5px; /* Reduce space between sliders */
    padding-bottom: 15px; /* Fine-tune spacing */
}
