@import url('https://fonts.googleapis.com/css2?family=Afacad+Flux:wght@100..1000&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Oswald:wght@200..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    overflow: hidden; /* Prevents the body from scrolling */
    height: 100vh; /* Full height of the viewport */
    background: url(../images/logo-bg.png) no-repeat center; 
}

/* WebKit scrollbar styles */
body::-webkit-scrollbar {
    height: 10px; /* Height of the horizontal scrollbar */
    width: 10px;
}

body::-webkit-scrollbar-track {
    background: #f1f1f1; /* Background of the scrollbar track */
    border-radius: 8px; /* Round the corners of the track */
}

body::-webkit-scrollbar-thumb {
    background: #888; /* Color of the scrollbar thumb */
    border-radius: 10px; /* Rounded corners for the thumb */
}

body::-webkit-scrollbar-thumb:hover {
    background: #555; /* Color of the scrollbar thumb on hover */
}

.overlay {
    position: fixed; /* Cover the entire viewport */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7); 
    z-index: 1; /* Ensure overlay is above the background image */
}

.main-container {
    position: relative;
    scroll-behavior: smooth; /* Smooth scrolling between items */
}

nav {
    position: absolute;
    top: 5;
    left: 5;
    z-index: 1000; /* Ensures the button stays on top */
}

.nav-btn-active {
    font-weight: bold;
    text-decoration: underline;
}

.nav-link-active {
    font-weight: bold;
    text-decoration: underline;
    color: #dc0707;
}

.navbar-toggler {
    color: white; /* Makes the button text color white */
    border-color: white; /* Makes the button border white */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    font-size: 25px;
}

.scrollable-container {
    height: 100vh;
}

/* .swiper-pagination {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
} */

.body-slide {
    height: 100vh; /* Each section takes full viewport height */
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
}

.lg-show-none {
    display: none;
}


.main-content {
    width: 100%;           /* Full width to cover the entire screen */
    height: 100vh;        /* Ensures pagination and other elements can be positioned inside */
}

.hero-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
}

.hero-container .hero-item {
    /* display: none; */
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow-x: hidden;
    /* opacity: 0; */
}

.heroNone {
    display: none;
}
.heroActive {
    display: flex;
}

.hero-container .hero-item .hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-container .hero-item .image-overlay {
    position: fixed; 
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7); 
    z-index: 1; 
}

.hero-container .hero-item .hero-image-container img,
.hero-container .hero-item .hero-image-container-inverse img {
    position: absolute; 
    bottom: 0;         
    width: auto;       
    height: auto;      
    max-width: 100%;   
    max-height: 100%;  
    object-fit: contain; 
    object-position: center; 
    z-index: 0;       
}

/* Specific adjustments for the normal image */
.hero-container .hero-item .hero-image-container img {
    right: 0; /* Aligns the image to the right */
}

/* Specific adjustments for the inverse image */
.hero-container .hero-item .hero-image-container-inverse img {
    left: 0; /* Aligns the image to the left */
}

.hero-container .hero-item .hero-text,
.hero-container .hero-item .hero-text-inverse {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    color: white;
    z-index: 10;
}

/* Specific adjustments for the normal text */
.hero-container .hero-item .hero-text {
    left: 0; /* Aligns the text to the left */
}

/* Specific adjustments for the inverse text */
.hero-container .hero-item .hero-text-inverse {
    right: 0; /* Aligns the text to the right */
}

.hero-container .hero-item .hero-title,
.hero-container .hero-item .hero-title-inverse {
    position: absolute;
    top: 0;
    margin-top: 10%;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 4rem;
    color: rgba(197, 219, 89, 255);
    text-transform: uppercase;
    letter-spacing: .01em;
    text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.3);
}

.hero-container .hero-item .hero-title {
    left: 0;
    margin-left: 20%;
    text-align: left;
}

.hero-container .hero-item .hero-title-inverse {
    right: 0;
    margin-right: 20%;
    text-align: right;
}

.hero-container .hero-item .hero-info,
.hero-container .hero-item .hero-info-inverse {
    position: absolute;
    top: 40%;
    width: 50%;
    margin-bottom: 10%;
    font-family: "Lato", serif;
    font-size: 1rem;
    color: white;
    text-transform: lowercase;
    letter-spacing: .01em;
    text-align: left;
}

.hero-container .hero-item .hero-info {
    right: 40%;
    margin-right: 10px;
}

.hero-container .hero-item .hero-info p{
    display: -webkit-box;         
    -webkit-box-orient: vertical; 
    overflow: hidden;             
    -webkit-line-clamp: 3;        
    max-height: 4.5em;           
    line-height: 1.5em; 
}

.hero-container .hero-item .hero-info-inverse {
    left: 40%;
    margin-left: 10px;
}

.hero-container .hero-item .hero-info-inverse p{
    display: -webkit-box;         
    -webkit-box-orient: vertical; 
    overflow: hidden;             
    -webkit-line-clamp: 3;        
    max-height: 4.5em;           
    line-height: 1.5em; 
}

.hero-container .hero-item .hero-info p::first-letter,
.hero-container .hero-item .hero-info-inverse p::first-letter {
    text-transform: uppercase; 
}

.hero-container .hero-item .hero-info .hero-btn,
.hero-container .hero-item .hero-info .hero-btn-inverse {
    position: absolute;
    margin-bottom: 10%;
    font-family: "Oswald", serif;
    font-size: 1.2rem;
    color: white;
    letter-spacing: .05em;
    text-align: left;
}

.hero-container .hero-item .hero-info .hero-btn {
    right: 40%;
    margin-right: 10px;
}

.hero-container .hero-item .hero-info .hero-btn-inverse {
    left: 40%;
    margin-left: 10px;
}

.slide-top-top {
    animation: slideInFromTop 1s forwards, slideOutToTop 1s forwards 3s; /* Adjust timings as needed */
}

.back-slide-top-top {
    animation: slideOutToTop 1s forwards, slideOutToTop 1s forwards 3s; /* Adjust timings as needed */
}

.slide-left-left {
    animation: slideInFromLeft 1s forwards, slideOutToLeft 1s forwards 3s; /* Adjust timings as needed */
}

.image-slide-fade-in {
    animation: imageFadeIn 1s forwards, imageFadeOut 1s forwards 3s;
}

.image-slide-fade-out {
    animation: imageFadeOut 1s forwards;
}

.back-slide-left-left {
    animation: slideOutToLeft 1s forwards, slideOutToLeft 1s forwards 3s; /* Adjust timings as needed */
}

.slide-right-right {
    animation: slideInFromRight 1s forwards, slideOutToRight 1s forwards 3s; /* Adjust timings as needed */
}

.back-slide-right-right {
    animation: slideOutToRight 1s forwards, slideOutToRight 1s forwards 3s; /* Adjust timings as needed */
}

@keyframes imageFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes imageFadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}


@keyframes slideInFromTop {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideOutToTop {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-100%);
        opacity: 0;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutToRight {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes slideInFromBottom {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideOutToBottom {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(100%);
        opacity: 0;
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutToLeft {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@media only screen and (max-width: 768px) {
    body {
        height: 100dvh;
    }

    .hero-container .hero-item .hero-title,
    .hero-container .hero-item .hero-title-inverse {
        margin-top: 50px;
        font-size: 2.5rem;
    }

    .hero-container .hero-item .hero-title {
        left: 0;
        margin-left: 20px;
        text-align: center;
    }
    
    .hero-container .hero-item .hero-title-inverse {
        right: 0;
        margin-right: 20px;
        text-align: center;
    }
    
    .hero-container .hero-item .hero-info,
    .hero-container .hero-item .hero-info-inverse {
        top: 35%;
        width: 50%;
    }

    .hero-container .hero-item .hero-info {
        right: 40px;
        margin-right: 10px;
    }

    .hero-container .hero-item .hero-info-inverse {
        left: 40px;
        margin-left: 10px;
    }

    .hero-container .hero-item .hero-info .hero-btn,
    .hero-container .hero-item .hero-info .hero-btn-inverse {
        margin-bottom: 10%;
        font-size: 1.2rem;
        text-align: center;
    }

    .hero-container .hero-item .hero-info .hero-btn {
        right: 40px;
        margin-right: 10px;
    }

    .hero-container .hero-item .hero-info .hero-btn-inverse {
        left: 40px;
        margin-left: 10px;
    }
}

/* CATEGORIES */
/* .categories {
    background-color: rgba(255, 255, 255, 0.7);
}

.categories .categories-items-wrapper{
    background-color: rgba(0, 0, 0,);
    height: 90vh;
} */

/* CATEGORIES */

.section-title {
    font-size: 2.5rem;
    color: white;
    text-align: center;
}
/* DEALS */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(5, 20%); /* 5 equal columns */
    grid-template-rows: repeat(4, 25%);    /* 4 equal rows */
    height: 90vh;
    /* background-color: rgba(255, 255, 255, 0.3); Use rgba for transparency */
}

.deal-item {
    position: relative; /* Positioning for absolute children */
    display: block;     /* Make the link behave like a block */
    overflow: hidden;   /* Prevent overflow */
    /* width: 100%; */
    background-color: rgba(0, 0, 0, 0.7); 
    border: 1px solid white;
}

.container {
    width: 100%;       /* Full width */
    height: 100%;      /* Full height */
}

.deal-image {
    width: 100%;       /* Image takes full width */
    height: 100%;      /* Image takes full height */
    object-fit: cover; /* Cover the container without distortion */
}

.price-cut {
    position: absolute; /* Position relative to container */
    top: 10px;         /* Position at the top */
    left: 10px;        /* Position at the left */
    background-color: rgba(255, 0, 0, 0.7); /* Semi-transparent background */
    color: white;      /* Text color */
    padding: 5px;      /* Padding for the price cut */
    border-radius: 5px; /* Optional rounding */
}

.deal-overlay {
    position: absolute; /* Position overlay relative to container */
    bottom: 0;         /* Align to the bottom */
    left: 0;           /* Align to the left */
    right: 0;          /* Align to the right */
    background-color: rgba(0, 0, 0, 0.5); /* Dark semi-transparent background */
    color: white;      /* Text color */
    padding: 10px;     
    text-align: center; /* Center the text */
}

.prices {
    display: flex;     /* Flexbox for the prices */
    justify-content: center; /* Center prices */
    gap: 10px;        /* Space between prices */
}

.current-price {
    font-weight: bolder; /* Make current price bold */
    color: rgb(83, 234, 83);
}

.original-price {
    text-decoration: line-through; /* Strikethrough original price */
    color: rgb(240, 69, 69);        /* Light gray color */
    font-weight: bold;
}

.top-deal {
    grid-column: span 2; /* Spans 3 columns */
    grid-row: span 2; /* Spans 2 rows */
} 


@media only screen and (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
        margin-top: 30px;
    }
    /* DEALS */
    .deals-grid {
        display: grid;
        grid-template-columns: repeat( 3, 25dvh); 
        grid-template-rows: repeat(4, 25%);  
        height: 85dvh;
        overflow-x: auto;
        grid-auto-flow: column;
    }
    .deal-overlay {    
        padding: 5px;  
    }
    .prices {
        display: flex;     /* Flexbox for the prices */
        justify-content: center; /* Center prices */
        gap: 10px;        /* Space between prices */
    }
}
/* DEALS */

/* STORES AND SOCIALS */
.stores-grid {
    display: grid;
    grid-template-columns: repeat(4, 25%); /* 5 equal columns */
    grid-template-rows: repeat(2, 45%);    /* 4 equal rows */
    height: 100%;
    /* background-color: rgba(255, 255, 255, 0.3); Use rgba for transparency */
}

.store-item {
    position: relative; /* Positioning for absolute children */
    display: block;     /* Make the link behave like a block */
    overflow: hidden;   /* Prevent overflow */
    /* width: 100%; */
    background-color: rgba(255, 255, 255, 0.7); 
    border: 1px solid black;
}

.stores-container {
    width: 100%;       /* Full width */
    height: 100%;      /* Full height */
}

.store-image {
    width: 100%;       /* Image takes full width */
    height: 100%;      /* Image takes full height */
    object-fit: cover; /* Cover the container without distortion */
}

.store-overlay {
    position: absolute; /* Position overlay relative to container */
    bottom: 0;         /* Align to the bottom */
    left: 0;           /* Align to the left */
    right: 0;          /* Align to the right */
    background-color: rgba(0, 0, 0, 0.7); /* Dark semi-transparent background */
    color: white;      /* Text color */
    padding: 10px;     
    text-align: center; /* Center the text */
}

.store-overlay h3 {
    font-family: "Afacad Flux", serif;
    font-size: 24px;       
}

.top-store {
    grid-column: span 2; /* Spans 3 columns */
    grid-row: span 2; /* Spans 2 rows */
} 


@media only screen and (max-width: 768px) {
    .lg-show-none {
        display: block;
    }
    .mobile-show-none {
        display: none;
    }
    .stores {
        margin-top: 50px;
    }
    .stores-grid {
        grid-template-columns: repeat(2, 50%); /* 5 equal columns */
        grid-template-rows: repeat(3, 30%);    /* 4 equal rows */
        height: 100%;
        /* background-color: rgba(255, 255, 255, 0.3); Use rgba for transparency */
    }
    .top-store {
        grid-column: span 2;
        grid-row: span 1;
    }
}
/* STORES AND SOCIALS */

/* FOOTER */
.socials-footer {
    margin-top: 20%;
    margin-left: 10%;
}
/* FOOTER */

.page-title-slide {
    display: flex; 
    flex-direction: column;
    justify-content: center; /* Horizontally center */
    align-items: center; /* Vertically center */
}

.page-title-slide .page-title {
    font-family: "Oswald", serif;
    font-size: 5rem;
    font-weight: 700;
    color: white;
    text-align: center; /* Center text within itself */
    width: 100%; /* Set width to allow wrapping */
    overflow-wrap: break-word; /* Ensure long words break to the next line */
    white-space: normal; /* Allow text to wrap normally */
}


.down-arrow-container {
    display: flex; /* Center align the arrow */
    justify-content: center; /* Center horizontally */
    margin-top: 10px; /* Space above the arrow */
    color: white;
    font-size: 5rem;
    cursor: pointer;
}

.bounce {
    display: inline-block; /* Ensure the icon displays inline with text */
    animation: bounce 1s infinite; /* Infinite bounce animation */
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px); /* Adjust height of the bounce */
    }
    60% {
        transform: translateY(-5px);
    }
}

@media only screen and (max-width: 768px) {
    .page-title-slide .page-title {
        font-size: 2rem;
        font-weight: 500;
    }
    
    .down-arrow-container {
        font-size: 3rem;
    }
}

.itemsPart {
    /* background-color: white; */
    z-index: 99;
}

.items-search-bar {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    position: relative;
}

.items-search-bar input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    font-size: 16px;
    border: 1px solid white;
    border-radius: 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: transparent;
    color: white;
}

.items-search-bar input:focus {
    background-color: rgba(255, 255, 255, 0.3); 
    box-shadow: 0 3px 7px rgba(255, 255, 255, 0.1);
    border: 2px solid white;
}

.items-search-bar .search-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 18px;
    color: red;
}

.items-wrapper {
    /* background: blue; */
    height: 85%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.items-wrapper .items-filters{
    /* background: white; */
    width: 25%;
}

.section-sub-title{
    font-family: "Afacad Flux", serif;
    font-size: 2rem;
    font-weight: 500;
}

.filters-column {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    max-width: 300px;
    margin: 20px;
    /* background-color: white; */
}

.filter-option {
    margin-bottom: 10px;
    font-family: "Afacad Flux", serif;
    font-size: 1rem;
    display: flex;
    color: white;
    flex-direction: row;
}

.filter-option input[type="checkbox"] {
    margin-right: 8px;
}

.filter-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.items-wrapper .items-grid{
    /* background: white; */
    width: 70%;
}

.items-wrapper .items-grid .items-container{
    /* background: rgb(186, 60, 60); */
    width: 100%;
    height: 86%;
}

.items-wrapper .items-grid .items-container .items-fr{
    /* background: rgb(225, 209, 209); */
    width: 100%;
    height: 90%;
}

.items-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 7px;
    /* padding: 20px; */
}

.pagination {
    display: inline-flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.pagination li {
    margin: 0 5px;
}

.pagination li a {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    color: gray;
    border: 1px solid white;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
}

.pagination li a:hover {
    background-color: gray;
    color: white;
}

.pagination li.disabled a {
    color: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
}

.pagination li.active a {
    background-color: white;
    color: gray;
    pointer-events: none;
}

.items-fr {
    width: 100%;
    /* padding: 20px; */
    padding-top: 5px;
    padding-left: 5px;
}

.items-fr .items-swiping-wrapper{
    width: 100vw;
    /* background-color: brown; */
    height: 65vh;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
}

/* WebKit scrollbar styles */
.items-fr .items-swiping-wrapper::-webkit-scrollbar {
    height: 10px; /* Height of the horizontal scrollbar */
}

.items-fr .items-swiping-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1; /* Background of the scrollbar track */
    border-radius: 8px; /* Round the corners of the track */
}

.items-fr .items-swiping-wrapper::-webkit-scrollbar-thumb {
    background: #888; /* Color of the scrollbar thumb */
    border-radius: 10px; /* Rounded corners for the thumb */
}

.items-fr .items-swiping-wrapper::-webkit-scrollbar-thumb:hover {
    background: #555; /* Color of the scrollbar thumb on hover */
}

/* Optional: Styling for the content within the scrollable area */
.items-fr .items-swiping-wrapper > * {
    display: inline-block; /* Make child elements inline */
    margin-right: 10px; /* Space between items */
}

.items-swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100vw;
    height: 100%;
    padding-bottom: 10px;
    /* padding-right: ; */
    /* background-color: green; */
    /* overflow: hidden; */
}

.single-item {
    position: relative;
    width: 20vw;
    height: 28vh;
    margin-top: 10px;
    margin-left: 10px;
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    text-align: center;
    font-size: 14px;
}

.spacer-item {
    opacity: 0;
}

.item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12vh;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
}

.item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    color: white; /* Text color */
    overflow: hidden;
}

.item-name {
    font-size: 16px;
    margin: 0;
    /* margin-top: 10px; */
    font-weight: bold;
    text-overflow: ellipsis;
}
  
.item-prices {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
}
  
.actual-price {
    text-decoration: line-through;
    font-size: 14px;
}
  
.offer-price {
    font-size: 14px;
    color: #ff6f61; /* Color for the discounted price */
}

.swiper-pagination-items {
    margin-top: 10px;
}

@media only screen and (max-width: 768px) {
    .items-wrapper {
        display: flex;
        flex-direction: column;
        /* justify-content: space-evenly; */
    }

    .items-wrapper .items-filters{
        width: 95%;
    }

    .filters-column {
        background-color: white;
        display: none;
    }

     .section-sub-title{
        border-radius: 14px;
        width: 30%;
        height: 30px;
        margin-left: 20px;
        background-color: white;
        font-size: 1.3rem;
    }
    
    .filter-option {
        color: black;
    }

    .items-search-bar {
        width: 90%;
        max-width: 800px;
        margin: 5px;
        margin-left: 20px;
    }

    .items-wrapper .items-grid{
        /* background: white; */
        width: 100%;
    }
    
    .items-wrapper .items-grid .items-container{
        /* background: rgb(186, 60, 60); */
        width: 100%;
        height: 88%;
    }

    .items-swiper-slide {
        padding-bottom: 0px;
        /* padding-right: ; */
        /* background-color: green; */
        /* overflow: hidden; */
    }
    
    .single-item {
        position: relative;
        width: 40vw;
        height: 30dvh;
        margin-top: 5px;
    }
    
    .spacer-item {
        opacity: 0;
    }

    .mobile-spacer {
        opacity: 0;
    }
    
    .item-name {
        font-size: 14px;
    }

    .items-pagination {
        padding-top: 0px;
        margin-top: 10px;
    }
}

/* ITEM PAGE  */
.noShowPc {
    display: none;
}
.item-split {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    height: 80vh;
    width: 96%;
    margin: 10px 2%;
    padding: 10px;
    /* border: 1px solid white; */
    border-radius: 10px;
}

.item-split .item-image-side {
    /* background: white; */
    width: 40%;
    height: 100%;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 20px;
}

.item-split .item-image-side .item-full-image-container{
    width: 100%;
    height: 70%;
    background-color: white;
    border-radius: 12px;
}

.item-split .item-image-side .item-full-image-container img{
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: opacity 0.5s ease; /* Smooth transition for opacity */
}

.item-full-image.fade-out {
    opacity: 0; /* Fade out */
}

.item-split .item-image-side .more-images-container{
    width: 100%;
    height: 28%;
    /* padding: 5px; */
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    overflow-x: scroll;
}

/* WebKit scrollbar styles */
.item-split .item-image-side .more-images-container::-webkit-scrollbar {
    height: 10px; /* Height of the horizontal scrollbar */
    margin-top: 10px;
}

.item-split .item-image-side .more-images-container::-webkit-scrollbar-track {
    background: #f1f1f1; /* Background of the scrollbar track */
    border-radius: 8px; /* Round the corners of the track */
}

.item-split .item-image-side .more-images-container::-webkit-scrollbar-thumb {
    background: #888; /* Color of the scrollbar thumb */
    border-radius: 10px; /* Rounded corners for the thumb */
}

.item-split .item-image-side .more-images-container::-webkit-scrollbar-thumb:hover {
    background: #555; /* Color of the scrollbar thumb on hover */
}

.item-split .item-image-side .more-images-container img{
    width: 100%;
    height: 95%;
    background-color: white;
    border-radius: 12px;
    margin-right: 10px;
    transition: opacity 0.5s ease; /* Smooth transition for opacity */
}

.item-mini-image.fade-out {
    opacity: 0; /* Fade out */
}

.item-split .item-info-side {
    width: 59%;
    border-radius: 14px;
}

.item-split .item-info-side .parent-links {
    display: flex; /* Use Flexbox */
    align-items: center; /* Center items vertically */
    font-family: "Afacad Flux", serif;
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 600;
    margin-top: 20px;
}

.item-split .item-info-side .parent-links a {
    text-decoration: none; /* Remove underline from links */
    color: white; /* Change link color */
    margin: 0 5px; /* Add spacing between links and separators */
}

.item-split .item-info-side .parent-links span {
    color: white; /* Change color of the separators */
}

.item-split .item-info-side .item-description {
    /* background: rgb(255, 255, 255, 0.3); */
    border-radius: 10px;
    height: 40%; 
    overflow-y: auto; 
    /* border: 1px solid #ccc;  */
    color: white;
    font-family: "Lato", serif;
    font-size: 16px;
    /* padding: 10px;  */
    margin-bottom: 10px; /* Space below the description */
}

.item-split .item-info-side .item-description .description-text{
    background: rgb(255, 255, 255, 0.3);
    border-radius: 10px;
    margin-right: 5px;
    padding: 10px;
}

/* WebKit scrollbar styles */
.item-split .item-info-side .item-description::-webkit-scrollbar {
    width: 10px; 
    margin-top: 10px;
    /* margin-left: 10px; */
}

.item-split .item-info-side .item-description::-webkit-scrollbar-track {
    background: #f1f1f1; /* Background of the scrollbar track */
    border-radius: 8px; /* Round the corners of the track */
}

.item-split .item-info-side .item-description::-webkit-scrollbar-thumb {
    background: #888; /* Color of the scrollbar thumb */
    border-radius: 10px; /* Rounded corners for the thumb */
}

.item-split .item-info-side .item-description::-webkit-scrollbar-thumb:hover {
    background: #555; /* Color of the scrollbar thumb on hover */
}

.item-split .item-info-side .item-prices {
    width: 80%;
    margin-left: 10%;
    margin-bottom: 10px; /* Space below the prices */
    font-size: 24px;
    font-family: "Playfair Display", serif;
    color: black;
    /* background-color: white; */
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.item-split .item-info-side .offer-price {
    color: #25D366; /* Offer price color */
    font-size: 30px;
    font-weight: 700;
}

.item-split .item-info-side .current-price {
    color: rgb(170, 166, 166); /* Current price color */
    font-size: 30px;
    text-decoration: line-through;
}

.item-split .item-info-side .amount-saved {
    color: rgb(255, 223, 0); /* Current price color */
    font-size: 30px;
}

.item-split .item-info-side .order-buttons {
    display: flex;
    justify-content: space-between; /* Space out the buttons */
    margin-bottom: 10px;
    width: 90%;
}

.item-split .item-info-side .whatsapp-button {
    background-color: #25D366; /* WhatsApp color */
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer; 
    border-radius: 10px;
}

.item-split .item-info-side .jumia-button {
    background-color: #f25c28; /* Jumia color */
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 10px;
}

.item-split .item-info-side .kilimall-button {
    background-color: #dc0707; /* Kilimall color */
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 10px;
}

.item-split .item-info-side .phone-button {
    background-color: rgb(66, 66, 176); /* Kilimall color */
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 10px;
}

.item-split .item-info-side .extra-info {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 5px;
}

.item-split .item-info-side .variations {
    margin-top: 10px; /* Space above variations */
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.item-split .item-info-side .variation-item {
    margin-bottom: 10px; /* Space between variation items */
    display: flex;
    font-size: 17px;
    color: white;
    justify-content: space-around;
}

.item-split .item-info-side .variation-item label{
    margin-right: 8px;
}

.item-split .item-info-side .color-options {
    display: flex; /* Arrange color options in a row */
}

.item-split .item-info-side .color-option {
    width: 30px; /* Width of each color option */
    height: 30px; /* Height of each color option */
    border: 1px solid #ccc; /* Optional border for visibility */
    border-radius: 50%; /* Make it circular */
    margin-right: 5px; /* Space between color options */
    cursor: pointer; /* Change cursor to pointer */
    transition: transform 0.2s; /* Smooth hover effect */
}

.item-split .item-info-side .color-option:hover {
    transform: scale(1.1); /* Slightly enlarge on hover */
}


.item-split .item-info-side .single-item-filters {
    display: flex;
    overflow-x: auto; /* Scroll horizontally when overflowing */
    white-space: nowrap; /* Prevent line breaks */
}

.item-split .item-info-side .filter-button {
    background-color: #95ea1f; /* Filter button color */
    color: white;
    padding: 5px 10px;
    margin-right: 5px; /* Space between filter buttons */
    text-decoration: none; /* Remove underline */
    border-radius: 7px; /* Rounded corners */
}

@media only screen and (max-width: 768px) {
    .noShowPc {
        display: block;
    }

    .noShowMobile {
        display: none;
    }

    .item-split {
        flex-direction: column;
        justify-content: space-evenly;
        height: 100dvh;
        width: 100%;
        margin: 0px 0px;
        padding: 5px;
    }
    
    .item-split .item-image-side {
        /* background: white; */
        width: 98%;
        height: 80%;
        border-radius: 14px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        padding: 10px;
        margin-top: -30%;
    }
    
    .item-split .item-image-side .item-full-image-container{
        width: 100%;
        height: 63%;
    }
    
    .item-split .item-image-side .more-images-container{
        width: 100%;
        height: 35%;
    }
    
    .item-split .item-image-side .more-images-container img{
        height: 90%;
        margin-right: 5px;
    }

    .item-split .item-info-side {
        width: 93%;
        margin-left: 2%;
        margin-right: 3%;
        height: 90%;
    }
    
    .item-split .item-info-side .item-description {
        width: 100%;
        height: 40%; 
        overflow-y: hidden; 
        overflow-x: auto; /* Allow horizontal scrolling */
        display: flex; /* Use flexbox to align children */
        background: rgba(255, 255, 255, 0.3);
    }
    
    .item-split .item-info-side .item-description .description-text {
        background: transparent;
        border-radius: 10px;
        padding: 10px;
        display: flex;
        flex-direction: row;
        width: max-content; /* Allow width to expand based on content */
    }
    
    .item-split .item-info-side .item-description .description-text p {
        width: 100%; /* Each paragraph occupies 100% of the parent's width */
        margin: 0; /* Remove default margin */
        padding: 5px;
        border-radius: 10px;
        flex: 0 0 auto; /* Prevent flex shrinking */
    }
    
    /* WebKit scrollbar styles */
    .item-split .item-info-side .item-description::-webkit-scrollbar {
        height: 5px;
    }

    .item-split .item-info-side .extra-info {
        /* height: 30%; */
    }

    .item-split .item-info-side .item-prices {
        width: 100%;
        /* height: 5%; */
        margin-left: 0%;
        font-size: 14px;
        justify-content: space-evenly;
        font-family: "Oswald", serif;
        flex-direction: column;
    }
    
    .item-split .item-info-side .offer-price {
        font-size: 40px;
        margin-right: 10px;
    }
    
    .item-split .item-info-side .current-price {
        font-size: 20px;
    }
    
    .item-split .item-info-side .amount-saved {
        font-size: 20px;
        /* margin-left: 20px; */
    }

    .off-canvas-body .order-buttons {
        display: flex;
        flex-direction: column;
    }
    
    .offcanvas-body .order-buttons .order-buttons-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Create two equal columns */
        gap: 10px; /* Optional: add space between the items */
    }
    
    .order-buttons-wrapper button {
        width: 100%; /* Make buttons take the full width of their grid cell */
    }
    
    
    .item-split .item-info-side .whatsapp-button {
        background-color: #25D366; /* WhatsApp color */
        color: white;
        border: none;
        padding: 10px;
        cursor: pointer; 
        border-radius: 10px;
    }
    
    .item-split .item-info-side .jumia-button {
        background-color: #f25c28; /* Jumia color */
        color: white;
        border: none;
        padding: 10px;
        cursor: pointer;
        border-radius: 10px;
    }
    
    .item-split .item-info-side .kilimall-button {
        background-color: #dc0707; /* Kilimall color */
        color: white;
        border: none;
        padding: 10px;
        cursor: pointer;
        border-radius: 10px;
    }
    
    .item-split .item-info-side .phone-button {
        background-color: rgb(66, 66, 176); /* Kilimall color */
        color: white;
        border: none;
        padding: 10px;
        cursor: pointer;
        border-radius: 10px;
    }
    
    .item-split .item-info-side .extra-info {
        background-color: rgba(255, 255, 255, 0.3);
        border-radius: 10px;
        padding: 5px;
    }
    
    .item-split .item-info-side .variations {
        margin-top: 10px; /* Space above variations */
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
    }
    
    .item-split .item-info-side .variation-item {
        margin-bottom: 10px; /* Space between variation items */
        display: flex;
        font-size: 17px;
        color: white;
        justify-content: space-around;
    }
    
    .item-split .item-info-side .variation-item label{
        margin-right: 8px;
    }
    
    .item-split .item-info-side .color-options {
        display: flex; /* Arrange color options in a row */
    }
    
    .item-split .item-info-side .color-option {
        width: 30px; /* Width of each color option */
        height: 30px; /* Height of each color option */
        border: 1px solid #ccc; /* Optional border for visibility */
        border-radius: 50%; /* Make it circular */
        margin-right: 5px; /* Space between color options */
        cursor: pointer; /* Change cursor to pointer */
        transition: transform 0.2s; /* Smooth hover effect */
    }
    
    .item-split .item-info-side .color-option:hover {
        transform: scale(1.1); /* Slightly enlarge on hover */
    }
    
    
    .item-split .item-info-side .single-item-filters {
        display: flex;
        overflow-x: auto; /* Scroll horizontally when overflowing */
        white-space: nowrap; /* Prevent line breaks */
    }
    
    .item-split .item-info-side .filter-button {
        background-color: #95ea1f; /* Filter button color */
        color: white;
        padding: 5px 10px;
        margin-right: 5px; /* Space between filter buttons */
        text-decoration: none; /* Remove underline */
        border-radius: 7px; /* Rounded corners */
    }
}
/* ITEM PAGE  */

.cat-tag {
    width: 100vw;
    /* background-color: brown; */
    height: 80vh;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
}

.all-links {
    display: flex;
    flex-direction: row;
}

.links-swipper-slide {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* width: 25vw; */
    /* height: 100%; */
    padding-bottom: 10px;
}

.links-swipper-slide a {
    position: relative;
    width: max-content;
    /* height: 28vh; */
    margin-top: 10px;
    margin-left: 10px;
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    text-align: center;
    font-size: 14px;
}

/* WebKit scrollbar styles */
.cat-tag::-webkit-scrollbar {
    height: 10px; /* Height of the horizontal scrollbar */
}

.cat-tag::-webkit-scrollbar-track {
    background: #f1f1f1; /* Background of the scrollbar track */
    border-radius: 8px; /* Round the corners of the track */
}

.cat-tag::-webkit-scrollbar-thumb {
    background: #888; /* Color of the scrollbar thumb */
    border-radius: 10px; /* Rounded corners for the thumb */
}

.cat-tag::-webkit-scrollbar-thumb:hover {
    background: #555; /* Color of the scrollbar thumb on hover */
}


