
@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
@source '../../storage/framework/views/*.php';
@source '../**/*.blade.php';
@source '../**/*.js';

/* @theme {
    --font-sans: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
        'Segoe UI Symbol', 'Noto Color Emoji';
} */


/* Define CSS Variables */
:root {
    --primary-blue: #1D1377;
    /* Define the primary blue color */
    --global-font-family: "Plus Jakarta Sans", sans-serif;
    /* Define the font family */
}

/* Apply Global Styles to the Body */

html, body {
  overflow-x: hidden;
}

body {
    color: var(--primary-blue);
    font-family: var(--global-font-family);
}

/* Optional: Tailwind Overrides (if needed) */
/* These classes will override Tailwind's default font styles */
.font-sans {
    font-family: var(--global-font-family) !important;
}

.text-primary-blue {
    color: var(--primary-blue) !important;
}

/* Custom CSS Classes (Optional - for specific cases) */
.custom-font {
    color: var(--primary-blue);
    font-family: var(--global-font-family);
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 22.5px */
    letter-spacing: -0.45px;
}

.font-plus-jakarta {
    font-family: var(--global-font-family);
}

.font-medium-weight {
    font-weight: 500;
}

.leading-150 {
    line-height: 150%;
}

.tracking-tight {
    letter-spacing: -0.45px;
}

.text-15px {
    font-size: 15px;
}

.fade {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.fade:not(.fade) {
    /* when you remove the class */
    opacity: 1;
}

.custom-bg-opacity {
    background-color: rgba(0, 0, 0, 0.6);
}

/* 30% white background */
.bg-white-30 {
    background-color: rgba(255, 255, 255, 0.3);
}

.about-filter-container {

    margin: 0 auto;
    /* Center the container horizontally */
}

.about-filter-wrapper {
    position: relative;
    /* Required for absolute positioning of the underline */
}

.about-filter-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    /* Adjust thickness as needed */
    background-color: #90A3BF;
    /* Underline color */
    z-index: 1;
    /* Ensure underline is behind the active underline */
}

.about-filter-text {
    @apply text-gray-700 hover:text-gray-900 focus:outline-none cursor-pointer text-lg pb-1;
    /* Added padding-bottom for underline */
    margin-right: 2rem;
    /* Increased gap between texts */
    position: relative;
    /* Required for active underline positioning */
    z-index: 2;
    /* Ensure text is above the underline */
}

.about-filter-text:last-child {
    margin-right: 0;
    /* Remove margin from the last item */
}

.about-filter-text {
    color: rgba(26, 32, 44, 0.6);
    /* #1A202C with 60% opacity */
    font-weight: normal;
    cursor: pointer;
    position: relative;
    /* Required for absolute positioning of the underline */
    padding-bottom: 0.5rem;
    /* Add some space for the underline */
    white-space: nowrap;
    /* Prevent text from wrapping */
    padding-left: 1rem;
    padding-right: 1rem;
}

.about-filter-text:hover {
    color: rgba(26, 32, 44, 1);
    /* #1A202C with 100% opacity on hover */
}

.about-filter-text-active {
    color: rgba(26, 32, 44, 1);
    /* #1A202C with 100% opacity */
    font-weight: 600;
    /* Semi-bold */
}

.about-filter-text-active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #1A202C;
    /* #1A202C for the active underline */
}

.about-content-view.hidden {
    display: none;
}

.about-content-view.about-content-view-active {
    display: block;
}

.about-nav-arrow {
    background-color: transparent;
    /* Remove default button background */
    border: none;
    /* Remove default button border */
    cursor: pointer;
    color: #718096;
    /* Gray-700 */
}

/* Mobile-Specific Styles */


.mobile-filter-wrapper {
    display: flex;
    /* Arrange items horizontally */
    width: fit-content;
    /* Make the container wide enough to hold all items */
    padding-left: 1rem;
    padding-right: 1rem;
}


.product-filter-text {
    color: rgba(26, 32, 44, 0.6);
    font-weight: normal;
    cursor: pointer;
    position: relative;
    padding-bottom: 0.5rem;
    white-space: nowrap;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* .product-underline {
    height: 3px;
    background-color: #1A202C;
    position: absolute;
    bottom: -1px;
    left: 0;
    transition: width 0.3s ease, transform 0.3s ease;
} */


/* Wrapper for desktop filter to enable horizontal scrolling if needed */


/* Hide scrollbar for Chrome, Safari, Opera */
/* .desktop-filter-nav .product-filter-wrapper::-webkit-scrollbar {
    display: none;
} */

#desktop-filter-scroll {
width: calc(100% - 100px); /* Fixed space for arrows container */
overflow: hidden;
}

#filter-container {
width: max-content; /* Allow natural width of content */
}

.filter-arrows-container {
display: flex;
gap: 4px;
margin-left: 16px;
flex-shrink: 0; /* Prevent arrows from shrinking */
width: 84px; /* Fixed width for two arrows + spacing */
}
.product-filter-text {
  padding: 8px 16px;
  flex: 0 0 160px; /* fixed width for each category item */
  text-align: center;
  white-space: nowrap;
}

/* Mobile filter wrapper */
.mobile-filter-nav .mobile-filter-wrapper {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth; /* smooth scrolling */
}

.mobile-filter-nav .mobile-filter-wrapper::-webkit-scrollbar {
    display: none;
}


.product-filter-container {
   
    /* Adjust based on arrow width and margin */
    position: relative;
}

/* Position arrows absolutely within the container */
.product-filter-container>.flex.items-center.hidden.md\:flex {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
/* Desktop filter scroll container styles */
#desktop-filter-scroll {
position: relative;
overflow: hidden;
width: 100%;
max-width: calc(100% - 80px); /* Make room for arrows */
}

#filter-container {
display: flex;
width: 70%;
transition: transform 0.3s ease;
padding-right: 40px; /* Add some padding at the end */
}

/* Make sure arrows are visible and positioned correctly */
#scroll-left, #scroll-right {
display: flex !important;
align-items: center;
justify-content: center;
z-index: 10;
background-color: white;
width: 36px;
height: 36px;
border-radius: 50%;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Arrow container */
.filter-arrows-container {
display: flex;
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
gap: 8px;
background: white;
padding-left: 10px;
}
* Hide scrollbar in all major browsers */ .hide-scrollbar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    appearance: textfield;
    -moz-appearance: textfield;
}

#before-footer.swiper-pagination-bullet {
    background-color: #d1d5db;
    /* Tailwind gray-300 */
    width: 10px;
    height: 10px;
    opacity: 0.5;
    transition: opacity 0.3s;
}

#before-footer.swiper-pagination-bullet-active {
    background-color: #486284;
    /* Theme color */
    opacity: 1;
}

/* Partner Page - Team Kubwa */
/* Force row layout for desktop slides */
.team-kubwa-slider-desktop .swiper-slide {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    width: 100% !important;
}

/* Move pagination down, make it static */
.team-kubwa-pagination-mobile,
.team-kubwa-pagination-desktop {
    position: static !important;
    margin-top: 1rem;
}

/* Ensure image containers respect 60/40 widths on desktop */
.team-kubwa-slider-desktop .image-container-first {
    width: 60% !important;
    padding-right: 0.5rem;
}

.team-kubwa-slider-desktop .image-container-second {
    width: 40% !important;
    padding-left: 0.5rem;
}

.swiper-button-prev,
.swiper-button-next {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 20px;
}
.tiktok-embed {
    position: relative;
    padding-bottom: 177.78%;
    height: 0;
    overflow: hidden;
}
.tiktok-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: none;
    overflow: hidden;
}

/* Ensure no border on accordion header focus */
.accordion-header:focus {
    border: none;
    box-shadow: none;
}

/* Support for rotate-180 class (if not already present in Tailwind) */
.rotate-180 {
    transform: rotate(180deg);
}

/* Custom styles for accordion header */
.accordion-header {
    font-size: 17px;
    color: #3c1b3f;
}

/* Custom style for Additional Information title */
.additional-information-title {
    color: #486284;
}

.short-description table,
.long-description table,
.additional-information table {
    @apply w-full border-collapse border border-gray-300 mb-4;
}
.short-description th,
.long-description th,
.additional-information th,
.short-description td,
.long-description td,
.additional-information td {
    @apply border border-gray-300 px-4 py-2 text-sm text-gray-600;
}
.short-description th,
.long-description th,
.additional-information th {
    @apply bg-gray-100 font-semibold;
}

/* Slideshow Gallery Custom Styles */
.product-image-gallery {
    box-sizing: border-box;
}

.product-image-gallery .row:after {
    content: "";
    display: table;
    clear: both;
}

/* Banner Rotator */
.banner-rotator-container {
    width: 100%;
    overflow: visible;
}
.banner-rotator-container img {
    width: 100%;
    height: 649px;
    object-fit: cover;
}
.banner-rotator-container .swiper-container {
    width: 100%;
    height: 100%;
}
.banner-rotator-container .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}
.banner-rotator-container .swiper-pagination {
    bottom: 0.25rem !important;
    padding-bottom: 0.5rem;
}
.banner-rotator-container .swiper-pagination-bullet {
    width: 50px;
    height: 5px;
    background: white;
    opacity: 0.5;
    margin: 0 6px;
    border-radius: unset !important;
}
.banner-rotator-container .swiper-pagination-bullet-active {
    opacity: 1;
}
.banner-rotator-container .text-overlay,
.banner-rotator-container .button-overlay {
    max-width: 80%;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .banner-rotator-container {
        min-height: 100vh;
    }
    
    .banner-rotator-container .text-overlay,
    .banner-rotator-container .button-overlay {
        max-width: 40%;
    }
    
    .banner-rotator-container .swiper-pagination {
        /*bottom: 0.25rem !important;*/
        top: 100% !important;
    }
}
@media (max-width: 767px) {
    .banner-rotator-container .swiper-pagination {
        bottom: 0.25rem !important;
        padding-bottom: 0.75rem;
    }
}