

/* ========== CART BADGE STYLES ========== */
.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--darkc, #FEAB8D);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.icon-link {
  position: relative;
  display: inline-block;
}

:root{
    --realbg: #f3f3f3;
    --bg: #0f0f0f;
    --fg: #fff;
    --card-1: #F7D5D6;
    --card-2: #FFFFFF;
    --card-3: #E79E9A;
    --base-100: #fafaf0;
    --base-200: #deded5;
    --base-300: #0f0f0f;
    --darkb: #C2A49C;
    --lightb:#F0E6DF;
    --whitebrand:#FFFFFF;
    --lightp:#F7D5D6;
    --darkp:#E79E9A;
    --lightc: #FFBFA7;
    --darkc:#FEAB8D;

      --slot-size: 34px;   /* circle size */
  --head-size: 40px;   /* header row height */
  --day-col: 64px;     /* left column width */
  --col-min: 58px;     /* hour column min width */
  --gap: 10px;   
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background-color: rgba(226, 149, 149, 0.8);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(233, 163, 163, 1);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


        /* Preloader */
/* Updated Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Add these two lines for the fade effect */
    transition: opacity 0.8s ease, visibility 0.8s ease; 
    opacity: 1;
    visibility: visible;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

        .preloader-logo {
            width: 120px;
            height: 120px;
            opacity: 0;
            animation: fadeInLogo 0.8s ease forwards;
        }

        .preloader-logo svg {
            width: 100%;
            height: 100%;
        }

        /* Color fill overlay */
        .color-fill {
            position: fixed;
            top: 0;
            left: 0;
            width: 0;
            height: 100vh;
            background: var(--card-3);
            z-index: 10000;
            transform-origin: left;
        }

        .color-fill.animate {
            animation: fillScreen 1.2s cubic-bezier(0.76, 0, 0.24, 1) forwards;
        }

        @keyframes fadeInLogo {
            to {
                opacity: 1;
            }
        }

        @keyframes fillScreen {
            0% {
                width: 0;
            }
            50% {
                width: 100%;
            }
            100% {
                width: 100%;
                left: 100%;
            }
        }
        
        /* Loading Spinner */
        .loading-spinner {
            width: 50px;
            height: 50px;
            border: 5px solid rgba(254, 171, 141, 0.3);
            border-top: 5px solid #FEAB8D;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
/* ========== NAVBAR STYLES ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    z-index: 999;
    transition: background-color 0.4s ease, padding 0.4s ease;
    background-color: transparent;
    color: white;
}

.navbar.scrolled {
    background-color: var(--bg);
    padding: 1rem 4rem;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

/* Hamburger - Hidden on Desktop */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background-color: currentColor;
    transition: 0.3s;
}

/* Desktop Menu Container */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: inherit;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}

/* Icon Links */
.icon-link {
    color: inherit;
    display: flex;
    align-items: center;
    transition: opacity 0.3s;
    cursor: pointer;
}

.icon-link:hover {
    opacity: 0.7;
}

/* Mobile Icons - Hidden on Desktop */
.mobile-icons {
    display: none !important; /* Force hide on desktop */
}

/* Desktop Icons - Visible on Desktop */
.desktop-only {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 1.0s ease-out forwards;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Alternative: Keep initial class support for direct HTML usage */
.navbar.initial {
    opacity: 0;
    transform: translateY(-30px);
    animation: fadeInDown 1.0s ease-out 0.2s forwards;
}

.hero-content.initial {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.0s ease-out 0.4s forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



@keyframes slideFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}



/* Ensure the container can hold the absolute video */
.intro-cards {
    position: relative;
    height: 100vh; /* Set a height so the video is visible */
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;

}

/* Style the video to act as a background */
.intro-video {
    position: fixed; /* This replaces background-attachment: fixed */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Keeps it behind everything on the page */
    pointer-events: none; /* Ensures you can still click things in front of it */
}

/* Ensure content sits on top */
.intro-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem; /* Controls spacing between h1 and buttons */
}

.intro-content h1 {
    color: var(--fg);
    text-align: center;
}
.intro-content p {
  
    font-size: 20px;
    color: var(--base-100);
}

/* Center Container */
.intro {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Buttons Container */
.intro-buttons {
    display: flex;
    gap: 1.5rem;
    padding: 0;
}

/* Remove the separate h1 margin rule since flex gap handles spacing */

/* Primary Button */
.btn-primary {
    padding: 1rem 2.5rem;
    background-color: var(--bg);
    color: var(--fg);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.btn-primary:hover {
    transform: translateY(-3px);
background-color: var(--fg);
color: var(--bg);
}

/* Secondary Button */
.btn-secondary {
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--fg);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--fg);
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background-color: var(--fg);
    color: var(--bg);
}

.intro-header{
    font-size: 4rem;
    line-height: 1.5;
    color: var(--fg);
    text-align: center;
}

body{
     font-family: "Urbanist", sans-serif;
     background-color: var(--bg);
     color: var(--fg);
     
}

.login-body, .register-body {
    background-color: var(--bg);
    color: var(--fg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1{
    font-size: 4rem;
    font-weight: 500;
    line-height: 1;
    font-family: "Quicksand", sans-serif;
}

p{
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
    font-family: "Urbanist", sans-serif;
}

section{
    position: relative;
    width: 100%;
    height: 100svh;
    padding: 2rem;

}

.Sec2b{
       background-color: var(--bg);
    color: var(--fg);
}
.Sec9s{
     background-color: var(--realbg);
    color: var(--bg);
}


.sticky{
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticky-header-for-spliter{
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sticky-header-for-spliter h1{
    position: relative;
    text-align: center;
    will-change: transform, opacity;
    transform: translateY(40px);
    opacity: 0;
}

.card-container-for-spliter{
    position: relative;
    width: 75%;
    display: flex;
    perspective: 1000px;
    transform: translateY(40px);
    will-change: width;
}

.card {
    position: relative;
    flex: 1;
    aspect-ratio: 5/7;
    transform-style: preserve-3d;
    transform-origin: top;
}

#card-1{
    border-radius: 20px 0 0 20px;
}

#card-3{
    border-radius: 0 20px 20px 0;
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: inherit;
    overflow: hidden;
}

.card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This keeps the image from stretching/squashing */
    display: block;    /* Removes extra space at the bottom */
}
.card-back{
    position: relative; 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform: rotateY(180deg);
    padding: 2rem;
}
/* White button at bottom-left */
.book-btn {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: white;
    color: black;
    border: none;
    padding: 16px 24px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 17px;
}

.book-btn:hover {
    background-color: var(--base-300);
    color: var(--base-200); /* subtle hover effect */
}
.card-back span{
    position: absolute;
    top: 2rem;
    left: 2rem;
    opacity: 0.4;
}

#card-1 .card-back {

        background:  no-repeat center center; /* centers the image */
    background-size: cover; /* makes the image cover the entire card */
    width: 100%;  /* optional: ensure it takes full width of parent */
    height: 100%; /* optional: ensure it takes full height of parent */
}

#card-2 .card-back {
            background:  no-repeat center center; /* centers the image */
    background-size: cover; /* makes the image cover the entire card */
    width: 100%;  /* optional: ensure it takes full width of parent */
    height: 100%; /* optional: ensure it takes full height of parent */
}

#card-3 .card-back {
           background:  no-repeat center center; /* centers the image */
    background-size: cover; /* makes the image cover the entire card */
    width: 100%;  /* optional: ensure it takes full width of parent */
    height: 100%; /* optional: ensure it takes full height of parent */
}


/* Side Images Styling */
.side-images-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Don't block clicks on cards */
    overflow: hidden;
    z-index: 1; /* Behind cards but visible */
}

.side-img {
    position: absolute;
    width: 150px;
    height: 150px;
    object-fit: contain;
    opacity: 0;
    will-change: transform, opacity;
}


.left-img.img-1 { top: 20%; left: 5%}
.left-img.img-2 { top: 50%;  left: 10%}
.left-img.img-3 { top: 80%; left: 20%}
.left-img.img-7 { top: 35%; left: 30%}
.left-img.img-8 { top: 50%; left: 45%}



.right-img.img-4 { top: 30%; right: 5%}
.right-img.img-5 { top: 60%;  right: 10%}
.right-img.img-6 { top: 90%; right: 15%}
.right-img.img-9 { top: 45%; right: 25%}
.right-img.img-10 { top: 75%; right: 40%}


/* Outro Section Layout */
.outro-cards {
    height: auto;
    height: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    margin: 0; /* Remove any margin */
    background-color: var(--bg);
}
.outro-image{
  width: 100%;
  height: 65vh;
  overflow: hidden;
  border-radius: 25px 25px 0 0; /* top-left, top-right, bottom-right, bottom-left */
}

.outro-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Bottom Half: Footer */
.footer {
    background-color: var(--bg);
    padding: 4rem 4rem 0; 
    color: var(--fg);
    flex-grow: 1; /* ✅ ADDED: Make footer fill remaining space */
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Left Side Styling */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* ✅ CHANGED: Reduced from 2rem to 1.5rem for tighter spacing */
}

.footer-logo {
    margin-bottom: 0; /* ✅ ADDED: Ensure no extra margin */
}

.footer-logo img {
    height: 50px;
    width: auto;
    display: block; /* ✅ ADDED: Remove inline spacing */
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 400;
}

.contact-item svg {
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--fg);
    color: var(--bg);
    border-radius: 50%;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

/* Right Side Styling */
.footer-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.footer-column h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    text-decoration: none;
    color: var(--fg);
    font-size: 0.95rem;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 0.6;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 3rem;
    padding-bottom: 2rem; /* ✅ ADDED: Move bottom padding here instead */
}

.footer-line {
    width: 100%;
    height: 1px;
    background-color: rgb(245, 245, 245);
    margin-bottom: 1.5rem;
}

.footer-copyright {
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.7;
  text-align: center;
}


/* ============classes============*/
/* =========================
   CLASSES SLIDER (IMAGES)
   ========================= */

/* If your global `section { height:100svh; padding:2rem }` exists,
   this prevents huge empty space for this slider section */
.classes-slider{
  height: auto !important;
  min-height: auto !important;
  padding: 0 0 20px !important;
  margin-top: 96px; /* keep below fixed navbar (adjust if needed) */
  background: var(--bg);
  color: var(--fg);
}

.classes-title{
  padding: 1.25rem 1.25rem 0;
  margin: 0;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Horizontal track */
.slider-track{
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.25rem 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;

  scroll-snap-type: x mandatory;
  scroll-padding: 1.25rem;
}

/* Card = background image tile */
.class-card{
  flex: 0 0 auto;
  width: min(82vw, 330px);
  height: 440px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  display: grid;
  place-items:  center;
  padding: 1rem;

  scroll-snap-align: center;

 
  box-shadow: 0 18px 40px rgba(0,0,0,.22);

  /* overlay + image (overlay first, image second) [web:212] */
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.75) 100%),
    var(--class-img);
  background-size: cover;              /* [web:220] */
  background-position: center;         /* [web:218] */
  background-repeat: no-repeat;
  text-decoration: none;
}


/* Keep button style (same idea as before) */
.class-btn{
  width: 50%;
  padding: .75rem 1rem;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  text-align: center;
  background: transparent;
  color: #fff;
  border:1px #f3f3f3 solid;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.class-card:hover .class-btn {
    background: #f3f3f3;
    color: #0f0f0f;
    transition: 0.3s ease;
}
.class-btn {
    transition: 0.3s ease;
}

/* Make button clickable inside <a> consistently */
.class-card .class-btn{
  pointer-events: none; /* click goes to the <a> */
}

/* Class price container */
.class-price-container {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0 1rem;
}

.class-price,
.class-price-discounted {
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  backdrop-filter: blur(5px);
}

.class-price-original {
  background: rgba(128, 128, 128, 0.7);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 400;
  text-align: center;
  text-decoration: line-through;
  backdrop-filter: blur(5px);
}

/* Optional scrollbar styling */
.slider-track::-webkit-scrollbar{ height: 10px; }
.slider-track::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.18);
  border-radius: 999px;
}
.classes-body{
    background-color: var(--bg);
}

/* General Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--bg);
    border-radius: 12px;
    padding: 2rem;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.modal-content h3 {
    color: var(--fg);
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.modal-content p {
    color: var(--fg);
    margin-bottom: 1.5rem;
    opacity: 0.8;
    font-size: 1rem;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.modal-buttons button {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.modal-buttons .btn-primary {
    background: var(--darkc);
    color: white;
    flex: 1;
}

.modal-buttons .btn-primary:hover {
    background: #ff7b5d;
    transform: translateY(-2px);
}

.modal-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--fg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex: 1;
}

.modal-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--fg);
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

/* Logout Confirmation Modal */
.logout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.logout-modal-content {
    background: var(--bg);
    border-radius: 12px;
    padding: 2rem;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.logout-modal-content h3 {
    color: var(--fg);
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.logout-modal-content p {
    color: var(--fg);
    margin-bottom: 1.5rem;
    opacity: 0.8;
    font-size: 1rem;
}

.logout-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.logout-modal-buttons button {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.logout-modal-buttons .btn-confirm {
    background: var(--darkc);
    color: white;
    flex: 1;
}

.logout-modal-buttons .btn-confirm:hover {
    background: #ff7b5d;
    transform: translateY(-2px);
}

.logout-modal-buttons .btn-cancel {
    background: rgba(255, 255, 255, 0.1);
    color: var(--fg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex: 1;
}

.logout-modal-buttons .btn-cancel:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.logout-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--fg);
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.logout-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}



/* 20% viewport hero image */
.schedule-hero{
  position: relative;
  height: 20vh;            /* ~20% of viewport height */
  min-height: 140px;       /* keeps it usable on small screens */
  max-height: 220px;       /* prevents it from being too tall on large screens */
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: .75rem;   /* space before the Today block */
  border: 1px solid rgba(255,255,255,.10);
}

/* background image fill */
.schedule-hero-img{
  width: 100%;
  height: 100%;
  object-fit: cover;       /* cover behavior [web:220] */
  display: block;
  filter: brightness(.75);
}

/* centered title */
.schedule-hero-title{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;

  font-family: "Quicksand", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}


/* page */
.schedule-body{
  background: var(--bg);
  color: var(--fg);

}

/* keep below fixed navbar */
.schedule-page{
  padding-top:  5%;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 0;
  max-width: 1200px;
  margin: 0 auto;

}

.schedule-top{
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: .4rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.schedule-info-panel {
  transition: all 0.3s ease;
  border: 2px solid rgba(255,255,255,0.2);
}

.schedule-info-panel:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.15);
}

.book-now-button {
  transition: all 0.2s ease;
  border: none;
}

.book-now-button:hover {
  background: #5aa894;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.book-now-button:active {
  transform: translateY(0);
}

.slot.highlighted {
  position: relative;
  box-shadow: 0 0 0 3px #69b3a2, 0 0 15px rgba(105, 179, 162, 0.6);
  z-index: 10;
  transform: scale(1.05);
  transition: all 0.2s ease;
}

.today-box{
  display: inline-flex;
  flex-direction: column;
  gap: .2rem;
}

.today-label{
  font-size: .78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: .65;
  margin: 0;
}

.today-value{
  font-family: "Quicksand", sans-serif;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem); /* smaller using clamp() [web:133] */
  line-height: 1.1;
  margin: 0;
}

/* legend */
.legend-wrap{
  margin-top: .4rem;
  margin-bottom: .4rem;
}

.legend-line{
  height: 1px;
  width: 100%;
  background: rgba(255,255,255,.14);
  margin-bottom: .5rem;
}

.legend{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .5rem;
}

.legend-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .5rem .55rem;
  border-radius: 12px;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .6px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}

/* timetable grid */
.timetable{
  display: grid;
  grid-template-columns: var(--day-col) repeat(7, minmax(var(--col-min), 1fr));
  gap: 1px;
  grid-auto-rows: 50px;
  justify-items: center;
  align-items: center;
  height: auto !important;
}

/* base cell */
.cell{
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  min-height: auto;
  display: grid;
  place-items: center;
  background: transparent;
}

/* transparent headers (no box look) */
.corner,
.time-h,
.day{
  background: transparent !important;
  border-color: transparent !important;
  border-radius: 0 !important;
}

/* corner keeps subtle dashed */
.corner{
  height: var(--head-size);
  width: 100%;
  
  border-radius: 12px !important;
  opacity: .3;
}

.time-h{
  height: var(--head-size);
  width: 100%;
  font-size: .72rem;
  letter-spacing: .6px;
  opacity: .5;
  display: grid;
  place-items: center;
}

.day{
  height: 100%;
  width: 100%;
  font-size: .72rem;
  letter-spacing: .8px;
  text-transform: uppercase;
  opacity: .5;
  display: grid;
  place-items: center;
}

/* circles */
.slot {
    width: var(--slot-size);
    height: var(--slot-size);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.12);
    background: transparent;
    display: grid;
    place-items: center;
    font-size: 0.6rem;
    color: #fff;
    text-align: center;
    padding: 2px;
}

/* class colors */
.slot.c-sound,    .legend-pill.c-sound{ --c: #e4827c; }
.slot.c-yin,      .legend-pill.c-yin{ --c: #ffb58a; }
.slot.c-hammock,  .legend-pill.c-hammock{ --c: #83c3ff; }
.slot.c-hoop,     .legend-pill.c-hoop{ --c: #c0a3fb; }
.slot.c-air,      .legend-pill.c-air{ --c: #9de5cb; }
.slot.c-strength, .legend-pill.c-strength{ --c: #ffdb7f; }
.slot.c-flex,     .legend-pill.c-flex{ --c: #ff99cc; }
.slot.c-dance,    .legend-pill.c-dance{ --c: #688dff; }

/* legend tint */
.legend-pill[class*="c-"]{
  background: color-mix(in srgb, var(--c) 22%, transparent);
  border-color: color-mix(in srgb, var(--c) 40%, rgba(255,255,255,.10));
}

/* filled circles */
.slot[class*="c-"]{
  background-color: var(--c);
  border-color: rgba(255,255,255,.22);
}


/* =========================
   PACKAGES PAGE STYLES
   ========================= */

.packages-body {
  background-color: var(--bg);
  color: var(--fg);
  font-family: "Urbanist", sans-serif;
}

.packages-section {
  padding: 8rem 2rem 4rem;

  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto !important; /* Overwrite general section height: 100svh */
}

/* Header & Line */
.pkg-header-wrap {
  text-align: center;
  margin-bottom: 3rem;
  width: 100%;
  max-width: 800px;
}

.pkg-title {
  font-family: "Quicksand", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.pkg-line {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0 auto;
}

/* Cards Container */
.pkg-container {
  display: flex;
  justify-content: center;
  align-items: center; /* Vertically center them so popular pops out */
  gap: 3rem;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
}

/* Individual Card */
.pkg-card {
  background: rgba(255, 255, 255, 0.05); /* Subtle card bg */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 1rem 1rem;
  min-width: 300px;
  width: 320px;
  text-align: center;
  transition: transform 0.3s ease;
  position: relative;
  
  /* Even shorter height */
  display: flex;
  flex-direction: column;
  height: 320px; /* Further reduced height for all regular cards */
}

/* Popular Card (Best Seller) */
.pkg-card.popular {
  transform: scale(1.1); /* Make it bigger */
  width: 352px; /* 320px * 1.1 */
  height: 352px; /* 320px * 1.1 - keeping proportional to regular card */
  
  border: 2px solid var(--card-3);
  z-index: 2;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* Label for Popular */
.pkg-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--card-3);
  color: var(--base-300);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--card-3);
}

/* Card Content */
.pkg-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pkg-name {
  font-family: "Quicksand", sans-serif;
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.pkg-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0.3rem 0;
  font-family: "Quicksand", sans-serif;
}

.pkg-price-original {
  font-size: 2rem;
  font-weight: 700;
  margin: 0.3rem 0;
  font-family: "Quicksand", sans-serif;
  text-decoration: line-through;
  opacity: 0.7;
}

.pkg-price-discounted {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0.3rem 0;
  font-family: "Quicksand", sans-serif;
}

.currency {
  font-size: 1rem;
  font-weight: 500;
  margin-left: 4px;
  vertical-align: middle;
}

.pkg-desc {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.pkg-features {
  list-style: none;
  margin-bottom: 1rem;
  flex-grow: 1; /* Pushes button down */
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pkg-features li {
  font-size: 1rem;
  opacity: 0.9;
}

/* Button */
.pkg-btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  
  /* Default button (outline) */
  border: 1px solid var(--fg);
  color: var(--fg);
}

.pkg-btn:hover {
  background: var(--fg);
  color: var(--bg);
}



/* Popular Button Style (Solid dark) */
.btn-pop {
  background: var(--bg);
  color: var(--fg); /* Light text */
  border: 1px solid var(--bg);
}

.btn-pop:hover {
  background: var(--card-3);
  color: var(--base-300); /* Dark text on hover */
  border-color: var(--card-3);
}

/* =========================
   BOOKING PAGE STYLES
   ========================= */

.booking-body {
    background-color: var(--bg);
    color: var(--fg);
    font-family: "Urbanist", sans-serif;
}

.booking-section {
    padding: 140px 2rem 4rem 2rem; /* Top padding clears fixed navbar */
    min-height: calc(100vh - 140px);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 0;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 Columns: Left Image, Right Info */
    gap: 4rem;
    max-width: 1100px;
    width: 100%;
    align-items: start;
}

/* Left Column: Image */
.booking-image {
    width: 100%;
    aspect-ratio: 4/5; /* Taller portrait look */
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right Column: Details */
.booking-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.class-category {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.class-title {
    font-family: "Quicksand", sans-serif;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.class-price {
    font-family: "Quicksand", sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.price-original {
    font-family: "Quicksand", sans-serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    text-decoration: line-through;
    opacity: 0.7;
    display: block;
}

.price-discounted {
    font-family: "Quicksand", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff6b6b;
    display: block;
}

.class-description {
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

/* Quantity Selector */
.quantity-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.qty-label {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 5px;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--fg);
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qty-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

#qty-input {
    width: 50px;
    background: transparent;
    border: none;
    color: var(--fg);
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: "Quicksand", sans-serif;
    outline: none;
}

/* Buttons */
.booking-actions {
    display: flex;
    gap: 1rem;
}

.btn-cart, .btn-buy {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cart {
    background: transparent;
    border: 1px solid var(--fg);
    color: var(--fg);
}

.btn-cart:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-buy {
    background: var(--fg);
    border: 1px solid var(--fg);
    color: var(--bg);
}

.btn-buy:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* --- Booking Layout --- */
.booking-section {
    padding: 140px 2rem 4rem 2rem;
    min-height: calc(100vh - 140px);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 0;
}

.booking-container {
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5rem; /* Space between main details and recommended section */
}

/* TOP ROW: 2 Columns */
.booking-main-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* (Existing Image & Details styles remain the same) */

/* BOTTOM ROW: Recommended */
.booking-rec-row {
    width: 100%;
}

.rec-header {
    text-align: left; /* Or center if you prefer */
    margin-bottom: 2rem;
}

.rec-main-title {
    font-family: "Quicksand", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--fg);
    margin-bottom: 0.5rem;
}

.rec-line {
    width: 60px;
    height: 2px;
    background: var(--fg);
    opacity: 0.3;
    border-radius: 2px;
}

/* Horizontal Track for Cards */
.rec-track-horizontal {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Equal Columns */
    gap: 1.5rem;
}

/* Card Styling (Vertical Stack) */
.rec-card-v {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--fg);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, background 0.3s;
    height: 100%;
}

.rec-card-v:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.rec-img-v {
    width: 100%;
    aspect-ratio: 4/3; /* Standard landscape ratio */
    object-fit: cover;
}

.rec-info-v {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.rec-name-v {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 1rem;
}

.rec-price-v {
    font-size: 0.9rem;
    opacity: 0.7;
}

.rec-price-container {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.rec-price-original {
    font-size: 0.8rem;
    opacity: 0.6;
    text-decoration: line-through;
}

.rec-price-discounted {
    font-size: 0.9rem;
    opacity: 0.9;
    color: #ff6b6b;
    font-weight: 600;
}



/* ========== CONSOLIDATED MOBILE STYLES ========== */
@media (max-width: 1000px) {
    /* ========== NAVBAR ========== */
    .navbar {
        padding: 1rem 2rem;
    }

    .hamburger {
        display: flex;
    }

    .desktop-only {
        display: none !important;
    }

    .nav-menu {
        position: fixed;
        top: -110%;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #000000;
        z-index: 1000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        visibility: hidden;
        transition: none;
    }

    .nav-menu.active {
        visibility: visible;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .mobile-icons {
        display: flex !important;
        gap: 2rem;
        margin-top: 1rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        width: 50%;
        justify-content: center;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* ========== INTRO ========== */
    .intro-cards {
        padding: 2rem 2rem 3rem;
    }

    .intro-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
        width: 100%;
        max-width: 300px;
    }

    /* ========== TYPOGRAPHY & SECTIONS ========== */
    h1 {
        font-size: 3rem;
    }

    .intro-cards h1,
    .outro-cards h1 {
        width: 100%;
    }

    .sticky {
        height: max-content;
        padding: 4rem 2rem;
        flex-direction: column;
    }

    .sticky-header-for-spliter {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin-bottom: 4rem;
    }

    .sticky-header-for-spliter h1 {
        opacity: 1;
    }

    .card-container-for-spliter {
        width: 100%;
        flex-direction: column;
        gap: 2rem;
    }

    .card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        border-radius: 20px !important;
    }

    #card-1,
    #card-2,
    #card-3,
    .card-back {
        transform: none;
    }

    /* ========== SIDE IMAGES ========== */
    .side-images-container {
        display: none;
    }

    /* ========== OUTRO/FOOTER ========== */
    .outro-image {
        height: 40vh;
    }

    .footer {
        padding: 3rem 2rem 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-right {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-left {
        gap: 1.25rem;
    }

    .footer-logo img {
        height: 40px;
    }

    .contact-item {
        font-size: 0.85rem;
    }

    .footer-column h3 {
        font-size: 1rem;
    }

    .footer-column a {
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding-bottom: 1.5rem;
    }

    /* ========== PACKAGES ========== */
    .pkg-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .pkg-card {
        width: 100% !important;
        max-width: 100%;
        height: auto !important;
        min-height: 300px; /* Set minimum height for mobile */
    }

    .pkg-card.popular {
        transform: scale(1) !important;
        order: -1;
        width: 100% !important;
    }

    .pkg-tag {
        top: -12px;
    }

    /* ========== BOOKING ========== */
    .booking-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .booking-image {
        aspect-ratio: 16/9;
    }

    .class-title {
        font-size: 2.2rem;
    }

    .booking-actions {
        flex-direction: column;
    }
}

@media (max-width: 900px) {
    /* ========== BOOKING SPECIFIC ========== */
    .booking-section {
        padding: 120px 1rem 3rem 1rem;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        min-height: calc(100vh - 120px);
        margin-top: 0;
    }

    .booking-container {
        width: 100%;
        max-width: 100%;
        gap: 3rem;
    }

    .booking-main-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
    }
 .intro-content h1 {
        margin-bottom: 2rem;
        font-size: 2.5rem;
    }
    .booking-image {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 1 / 1;
        border-radius: 12px;
        overflow: hidden;
    }

    .booking-details {
        width: 100%;
        align-items: center;
        text-align: center;
        padding: 0;
        overflow-wrap: break-word;
    }

    .class-title {
        font-size: 1.8rem !important;
        line-height: 1.2;
        width: 100%;
    }

    .class-price {
        font-size: 1.3rem !important;
    }

    .class-description {
        width: 100%;
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .quantity-wrapper {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 1rem;
    }

    .booking-actions {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
    }

    .rec-track-horizontal {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        width: 100%;
    }
}

@media (max-width: 600px) {
    /* ========== CLASSES SLIDER ========== */
    .classes-slider {
        margin-top: 86px;
    }

    .class-card {
        height: 420px;
        width: min(86vw, 330px);
    }

    /* ========== SCHEDULE ========== */
    :root {
        --slot-size: 22px;
        --head-size: 32px;
        --day-col: 45px;
        --col-min: 38px;
    }

    .schedule-page {
        padding-left: 10px;
        padding-right: 10px;
        margin: 0;
        max-width: none;
    }

    .timetable {
        grid-template-columns: var(--day-col) repeat(7, var(--col-min));
        gap: 4px;
        justify-content: start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }

    .cell {
        border-radius: 8px;
    }

    .time-h {
        font-size: 0.65rem;
    }

    .day {
        font-size: 0.65rem;
        justify-content: start;
        padding-left: 4px;
    }

    .legend {
        grid-template-columns: repeat(2, 1fr);
        justify-content: start;
    }

    .legend-pill {
        font-size: 0.65rem;
        padding: 0.3rem 0.4rem;
    }
}

@media (max-width: 480px) {
    /* ========== BOOKING SMALLEST SCREENS ========== */
    .booking-section {
        padding: 100px 0.75rem 2rem 0.75rem;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        min-height: calc(100vh - 100px);
        margin-top: 0;
    }

    .class-title {
        font-size: 1.5rem !important;
    }

    .rec-track-horizontal {
        grid-template-columns: 1fr;
    }

    .booking-image {
        aspect-ratio: 4 / 3;
    }
}

/* Force Desktop Visibility (remains at bottom) */
@media (min-width: 1001px) {
    .nav-menu {
        position: static !important;
        display: flex !important;
        visibility: visible !important;
        height: auto !important;
        background: transparent !important;
        flex-direction: row !important;
    }

    .nav-links {
        flex-direction: row !important;
        gap: 2.5rem !important;
    }

    .nav-links a {
        font-size: 0.9rem !important;
    }

    .mobile-icons {
        display: none !important;
    }

    .desktop-only {
        display: flex !important;
    }
}