/* ============================================================
   Blue Heaven — Modern Design System
   Version 3.0 | Tailwind CSS 3.x via CDN
   ============================================================ */

/* ── 1. CSS Custom Properties ───────────────────────────── */
:root {
    /* Brand Colors */
    --bh-primary: #4f46e5;
    /* indigo-600 */
    --bh-primary-light: #6366f1;
    /* indigo-500 */
    --bh-primary-dark: #3730a3;
    /* indigo-800 */
    --bh-accent: #f59e0b;
    /* amber-500  */
    --bh-accent-dark: #d97706;
    /* amber-600  */
    --bh-success: #10b981;
    --bh-danger: #ef4444;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    --grad-accent: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    --grad-dark: linear-gradient(180deg, #0f172a 0%, #1e1b4b 100%);
    --grad-hero: linear-gradient(135deg, rgba(79, 70, 229, 0.85) 0%, rgba(124, 58, 237, 0.75) 100%);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    --transition-spring: 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── 2. Base Reset & Defaults ───────────────────────────── */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: Inter, system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    background-color: #f8fafc;
    color: #334155;
    background-attachment: fixed;
}

a {
    transition: color 0.2s ease;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background-color: #f1f5f9;
}

tbody tr {
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.2s;
}

tbody tr:hover {
    background-color: #f8fafc;
}

td,
th {
    padding: 0.75rem 1rem;
    text-align: left;
}

label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.375rem;
}

hr {
    border-color: #e2e8f0;
}

/* ── 3. Typography ──────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
}

h1 {
    font-size: 1.875rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.25rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.875rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }
}

/* Gradient heading */
.heading-gradient {
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-image: var(--grad-primary);
}

/* Headings inside white-text containers (hero slides, dark sections) inherit parent color */
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.hero-slide h1,
.hero-slide h2,
.hero-slide h3 {
    color: inherit;
}

/* ── 4. Buttons ─────────────────────────────────────────── */
.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
    text-decoration: none;
    background: var(--grad-primary);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(79, 70, 229, 0.4);
    filter: brightness(1.08);
    color: #fff;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.2);
}

.btn-accent {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
    text-decoration: none;
    background: var(--grad-accent);
    border: none;
    cursor: pointer;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(245, 158, 11, 0.4);
    filter: brightness(1.08);
    color: #fff;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    border: 2px solid #6366f1;
    color: #4f46e5;
    transition: all 0.2s ease;
    text-decoration: none;
    background: transparent;
    cursor: pointer;
}

.btn-outline:hover {
    background: #eef2ff;
    color: #4338ca;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.75rem;
    font-weight: 500;
    color: #475569;
    transition: all 0.2s ease;
    text-decoration: none;
    background: transparent;
    border: none;
    cursor: pointer;
}

.btn-ghost:hover {
    background: #f1f5f9;
    color: #334155;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    background: #fff;
    color: #4338ca;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-white:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    color: #3730a3;
}


/* ── 5. Cards ───────────────────────────────────────────── */
.card-modern {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
    border: 1px solid #f1f5f9;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #e0e7ff;
}

.card {
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
    border: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Glassmorphism card */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 1rem;
}

/* Dark glass */
.glass-dark {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 1rem;
}

/* ── 6. Navigation ──────────────────────────────────────── */
.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass nav (applied via JS on scroll) */
.nav-glass {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.08);
}

.nav-link {
    position: relative;
    font-weight: 500;
    color: #475569;
    transition: color 0.2s ease;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.nav-link:hover {
    color: #4f46e5;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 9999px;
    background: #6366f1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: #4f46e5;
    font-weight: 600;
}

/* ── 7. Forms ───────────────────────────────────────────── */
.form-input,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="time"] {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    color: #334155;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    outline: none;
}

.form-input:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
input[type="time"]:focus {
    border-color: #818cf8;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
}

.form-textarea,
textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    color: #334155;
    resize: none;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    outline: none;
}

textarea:focus {
    border-color: #818cf8;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
}

.form-select,
select {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    color: #334155;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236366f1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

select:focus {
    border-color: #818cf8;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
}

input::placeholder,
textarea::placeholder {
    color: #94a3b8;
}

/* ── 8. Badges ──────────────────────────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 600;
    font-size: 0.75rem;
    border-radius: 9999px;
    padding: 0.25rem 0.75rem;
}

.badge-primary {
    background: #e0e7ff;
    color: #4338ca;
}

.badge-accent {
    background: #fef3c7;
    color: #d97706;
}

.badge-success {
    background: #d1fae5;
    color: #047857;
}

.badge-warning {
    background: #fef9c3;
    color: #a16207;
}

.badge-danger {
    background: #fee2e2;
    color: #b91c1c;
}

/* ── 9. Section Utilities ───────────────────────────────── */
.section-padding {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

@media (min-width: 768px) {
    .section-padding {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

@media (min-width: 1024px) {
    .section-padding {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.section-padding-sm {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

@media (min-width: 768px) {
    .section-padding-sm {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .section-padding-sm {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
}

.container-max {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container-max {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container-max {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Section label pill */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #4f46e5;
    background: #eef2ff;
    border-radius: 9999px;
    padding: 0.375rem 1rem;
    border: 1px solid #e0e7ff;
    margin-bottom: 1rem;
}

/* ── 10. Featured Car Layout ────────────────────────────── */
.featured-car-item {
    flex-shrink: 0;
    width: 66%;
    min-width: 66%;
}

@media (min-width: 576px) {
    .featured-car-item {
        width: 45%;
        min-width: 45%;
    }
}

@media (min-width: 992px) {
    .featured-car-item {
        width: 32%;
        min-width: 32%;
    }
}

/* ── 11. Hover Effects ──────────────────────────────────── */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hover-effect-scale {
    transition: all 0.3s ease;
}

.hover-effect-scale:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hover-effect-scale img {
    transition: transform 0.3s ease;
}

.hover-effect-scale:hover img {
    transform: scale(1.05);
}

/* Underline hover */
.hover-effect-underline {
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hover-effect-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: transform 0.3s ease;
    transform-origin: right;
    transform: scaleX(0);
}

.hover-effect-underline:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ── 12. Ratio / Aspect Helpers ─────────────────────────── */
.ratio {
    position: relative;
    width: 100%;
}

.ratio::before {
    display: block;
    padding-top: var(--fn-aspect-ratio, 66.66%);
    content: "";
}

.ratio>* {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ── 13. Icon Elements ──────────────────────────────────── */
.icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
}

.icon-badge-lg {
    width: 4rem;
    height: 4rem;
}

.icon-badge-sm {
    width: 2.5rem;
    height: 2.5rem;
}

.fi-check-circle {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    vertical-align: text-bottom;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2310b981'%3e%3cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Grayscale to color logo hover */
.grayscale-on-hover img,
.grayscale-on-hover svg {
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.5;
}

.grayscale-on-hover:hover img,
.grayscale-on-hover:hover svg {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

/* ── 14. Scroll & Scrollbar ─────────────────────────────── */
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Back-to-top button */
.btn-scroll-top {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    background: var(--grad-primary);
}

.btn-scroll-top:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
    filter: brightness(1.1);
}

.btn-scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ── 15. Mobile Nav Enhancements ────────────────────────── */
@media (max-width: 1023px) {
    .mobile-nav-open {
        overflow: hidden;
    }
}

/* ── 16. Hero Slide Bg ──────────────────────────────────── */
.hero-slide-bg {
    filter: brightness(0.75) saturate(1.1);
}

/* ── 17. Carousel ───────────────────────────────────────── */
.carousel-item {
    transition: all 0.5s ease;
}

/* ── 18. Swiper Custom ──────────────────────────────────── */
.swiper-pagination-bullet-active {
    background: var(--bh-primary) !important;
}

/* ── 19. Animations ─────────────────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-24px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(24px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(99, 102, 241, 0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out both;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.6s ease-out both;
}

.animate-fade-in-right {
    animation: fadeInRight 0.6s ease-out both;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

.animate-slide-down {
    animation: slideDown 0.3s ease-out both;
}

.animate-scale-in {
    animation: scaleIn 0.3s ease-out both;
}

.animate-spin-slow {
    animation: spin-slow 8s linear infinite;
}

/* Stagger delays */
.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

/* ── 20. Gradient Decorative Elements ───────────────────── */
.gradient-blob {
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.18;
    position: absolute;
    pointer-events: none;
}

/* ── 21. Text Gradient Utility ──────────────────────────── */
.text-gradient {
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-image: var(--grad-primary);
}

.text-gradient-accent {
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-image: var(--grad-accent);
}

/* ── 22. Divider Gradient ───────────────────────────────── */
.divider-gradient {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--bh-primary), transparent);
    width: 100%;
    border: none;
    margin: 0;
}

/* ── 23. Footer Link Hover ──────────────────────────────── */
.footer-link {
    color: #94a3b8;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #fff;
}

/* ── 24. Pricing Badge ──────────────────────────────────── */
.price-tag {
    display: inline-block;
    font-weight: 700;
    font-size: 1.125rem;
    color: #0f172a;
}

.price-tag span {
    font-size: 0.875rem;
    font-weight: 400;
    color: #64748b;
}

/* ── 25. Hide Scrollbar (for horizontal car scroll) ──── */
.hide-scrollbar {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari/Edge */
}

/* ── 26. Hero Dot Active State ──────────────────────── */
.hero-dot.active {
    width: 2rem !important;
    background: #fff !important;
    opacity: 1;
}

/* ── 27. Animation Delay Utilities ─────────────────── */
.delay-100 {
    animation-delay: .1s;
}

.delay-200 {
    animation-delay: .2s;
}

.delay-300 {
    animation-delay: .3s;
}

.delay-400 {
    animation-delay: .4s;
}

.delay-500 {
    animation-delay: .5s;
}

/* ── Booking Modal — native form field resets ───────────────
   Applies to all inputs/selects inside #bookingModal
   so we don't depend on Bootstrap's .form-control          */
#bookingModal input[type="text"],
#bookingModal input[type="time"],
#bookingModal input[type="number"],
#bookingModal select {
    width: 100%;
    padding: 0.6rem 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    color: #1e293b;
    background: #fff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

#bookingModal input:focus,
#bookingModal select:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

/* ── Fix: SVG wave-divider hairline gap ─────────────────────
   SVGs are inline by default, leaving a 1-2px subpixel gap
   between the hero section background and the curve shape.
   display:block + negative margin eliminates it on all screens. */
.absolute.bottom-0>svg,
.bottom-0.inset-x-0>svg {
    display: block;
    margin-bottom: -2px;
}