:root {
    --mart-yellow: #fcb800;
    --mart-dark: #222222;
    --mart-bg: #f5f5f5;
    --mart-text: #666666;
    --mart-link: #0066cc;
    --border-color: #e1e1e1;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    color: #111;
    font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo-text,
.dept-dropdown,
.btn-search,
.tab-link {
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1.5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    color: #000;
}

/* Specific Header Hovers */
.top-header a:hover {
    color: #fff !important;
}

.sub-header a:hover {
    color: var(--mart-yellow) !important;
}

/* Header Clean & Premium */
.top-header {
    background-color: #000;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 2000;
    transition: all 0.3s ease;
}

.top-header.header-scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 8px 0;
}

.logo-text {
    font-size: 2.2rem;
    letter-spacing: 4px;
    font-weight: 400;
    text-transform: uppercase;
}

.search-container {
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    height: 45px;
    border: none;
    box-shadow: none;
}

.search-container .form-select {
    width: 120px !important;
    border: none;
    border-right: 1px solid var(--border-color);
    border-radius: 0;
    font-size: 13px;
    background-color: #f4f4f4;
    cursor: pointer;
}

.search-container input {
    border: none;
    padding: 0 20px;
    flex-grow: 1;
    font-size: 14px;
}

.search-container .btn-search {
    background: #fff;
    color: #000;
    border: none;
    border-left: 1px solid #dee2e6;
    padding: 0 30px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-container .btn-search:hover {
    background: #000;
    color: #fff;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.action-item {
    position: relative;
    font-size: 24px;
    color: #fff;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.action-item:hover {
    opacity: 0.7;
    animation: none !important;
}

.badge-count {
    position: absolute;
    top: -5px;
    right: -10px;
    background: #ff3333;
    color: #fff;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navigation Luxury */
.sub-header {
    background: #fff !important;
    border-bottom: 1px solid #f1f1f1;
    padding: 0 !important;
}

.dept-dropdown {
    background: var(--mart-yellow);
    color: #000;
    padding: 15px 30px;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dept-dropdown:hover {
    background: #222;
    color: #fff;
}

.dept-wrapper {
    z-index: 1000;
}

.dept-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    background: #fff;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid #f1f1f1;
}

.dept-wrapper:hover .dept-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dept-menu li a {
    display: block;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
    transition: all 0.2s;
}

.dept-menu li a:hover {
    background: #fdfdfd;
    color: var(--mart-yellow);
    padding-left: 30px;
}

.main-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
}

.nav-right-info {
    font-size: 13px;
    font-weight: 600;
    display: flex;
    gap: 25px;
}

.nav-right-info a {
    color: #000;
    text-decoration: none;
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    padding: 30px 0;
    background: #fff;
}

.main-banner {
    height: 420px;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.main-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
    z-index: 2;
}

.carousel-item,
.swiper-slide {
    height: auto !important;
}

.carousel-item img,
.swiper-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--mart-yellow);
    transform: scale(0.6);
}

.swiper-pagination-bullet-active {
    background: var(--mart-yellow);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 50px;
    z-index: 3;
}

.side-banners {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mini-banner {
    height: 190px;
    background: #f4f4f4;
    border-radius: 8px;
    position: relative;
    padding: 0;
    overflow: visible;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mini-banner .banner-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 20px;
    display: inline-block;
    max-width: 85%;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 0;
    /* Center handling is done by parent flex */
}

/* Benefits Bar */
.benefits-bar {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefit-item i {
    font-size: 32px;
    color: #000;
    /* Black icons in reference */
}

.benefit-content h6 {
    margin: 0;
    font-weight: 700;
}

.benefit-content p {
    margin: 0;
    font-size: 12px;
    color: var(--mart-text);
}

/* Deals */
.deals-section {
    padding: 40px 0;
}

.deals-head {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.countdown-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.countdown-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #444;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.timer-unit {
    background: #222;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    min-width: 55px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.timer-unit span {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    line-height: 1;
}

.timer-unit small {
    font-size: 9px;
    text-transform: uppercase;
    color: var(--mart-yellow);
    font-weight: 600;
}

.timer-sep {
    font-size: 1.5rem;
    font-weight: 900;
    color: #222;
}

/* Top Categories Clean & Modern */
.top-cats-section {
    padding: 80px 0;
    background: #fafafa;
}

.cat-item-market {
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.cat-icon-wrapper {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: #222;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.44s ease;
    border: 1px solid #eee;
}

.cat-item-market:hover .cat-icon-wrapper {
    background: var(--mart-yellow);
    transform: translateY(-10px) rotate(5deg);
    box-shadow: 0 15px 35px rgba(252, 184, 0, 0.4);
    border-color: var(--mart-yellow);
}

.cat-item-market:hover .cat-img-wrapper {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.cat-item-market:hover .cat-img-wrapper img {
    transform: scale(1.1);
}

.cat-item-market:hover p {
    color: var(--mart-yellow);
}

.cat-img-wrapper img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cat-item-market p {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 10px;
    transition: color 0.3s ease;
}

/* Section Header Perfection */
.section-tab-header {
    background: none;
    padding: 0;
    margin-bottom: 40px;
    border-bottom: 2px solid #f1f1f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-tab-header h5 {
    font-size: 2rem;
    font-weight: 400;
    padding-bottom: 5px;
    position: relative;
    margin: 0;
}

.section-tab-header h5::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: var(--mart-yellow);
}

.tab-links {
    display: flex;
    gap: 35px;
}

.tab-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: #999;
    padding-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.tab-link:hover,
.tab-link.active {
    color: #000;
}

/* Mid Banners */
.mid-banner {
    height: 350px;
    background: #f4f4f4;
    border-radius: 4px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Download App */
.download-app-section {
    background: #f7f7f7;
    padding: 100px 0 80px 0;
    overflow: hidden;
}

.app-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.app-content p {
    color: var(--mart-text);
    margin-bottom: 40px;
}

.header-actions .action-item {
    color: #fff;
    font-size: 1.2rem;
    position: relative;
    margin-left: 20px;
    transition: all 0.2s;
}

.header-actions .action-item:hover {
    color: #ffc107;
}

.user-nav-log {
    color: #fff !important;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.2s;
}

.user-nav-log:hover {
    background: rgba(255, 255, 255, 0.1);
}

.app-buttons img {
    height: 45px;
    margin-right: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.app-buttons img:hover {
    transform: translateY(-5px);
}

.phone-mockup {
    position: relative;
    bottom: -50px;
}

.floating-phone {
    animation: float 6s ease-in-out infinite;
    max-height: 550px;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
}

.floating-phone:hover {
    transform: scale(1.02) rotate(1deg);
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(-1deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.phone-mockup img {
    width: 100%;
}

/* Main Footer Premium Styles */
.main-footer {
    background-color: #000 !important;
    color: #fff;
    position: relative;
    z-index: 10;
}

.footer-logo img {
    transition: transform 0.3s ease;
}

.footer-logo:hover img {
    transform: scale(1.05);
}

.footer-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.footer-links a {
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.hover-white {
    display: inline-block;
}

.hover-white:hover {
    color: #fff !important;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.social-icon:hover {
    background: var(--mart-yellow);
    color: #000;
    transform: translateY(-5px);
    border-color: var(--mart-yellow);
}

.newsletter-form .input-group {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    padding: 5px;
}

.newsletter-form .form-control {
    background: transparent !important;
    border: none;
    color: #fff !important;
}

.newsletter-form .btn {
    border-radius: 6px !important;
}

.hover-white-icon {
    transition: all 0.3s ease;
}

.hover-white-icon:hover {
    color: #fff !important;
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* Market Card Luxury Overhaul */
.market-card {
    background: #fff;
    border: 1px solid #f1f1f1;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.market-card:hover {
    border-color: transparent;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-12px);
}

.market-img {
    height: 300px;
    position: relative;
    overflow: hidden;
    background: #fdfdfd;
}

.market-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.market-card:hover .market-img img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    bottom: -70px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    padding: 18px;
    text-align: center;
    transition: all 0.4s ease;
    z-index: 100;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.03);
}

.ribbon-tag {
    position: absolute;
    top: -30px;
    /* BACK TO EXTREME POSITION */
    left: -30px;
    width: 145px;
    height: 145px;
    z-index: 50;
    background: url('../images/ribbon-red.png') no-repeat center;
    background-size: contain;
    pointer-events: none;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.5));
}

.ribbon-tag span {
    position: absolute;
    display: block;
    width: 180px;
    text-align: center;
    color: #fff;
    font-family: 'Bebas Neue', cursive;
    text-transform: uppercase;
    font-size: 1.25rem;
    /* Slightly smaller for safer fit */
    letter-spacing: 2px;
    left: -32px;
    top: 28px;
    /* MOVED HIGHER FROM 38px */
    transform: rotate(-45deg);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.ribbon-tag-fold {
    display: none;
    /* No longer needed with the image asset */
}

.market-card:hover .card-overlay {
    bottom: 0;
}

.price-box {
    padding: 20px 20px 5px;
}

.current-price {
    font-size: 1.4rem;
    font-weight: 900;
    color: #2c3e50;
}

.old-price {
    font-size: 0.9rem;
    color: #bbb;
    text-decoration: line-through;
    margin-left: 10px;
}

.product-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #111;
    padding: 0 20px 15px;
    display: block;
    height: 3.5rem;
    overflow: hidden;
    text-decoration: none;
    line-height: 1.4;
}

.product-title:hover {
    color: var(--mart-yellow);
}

.sold-by {
    padding: 0 20px;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 5px;
}

.stars {
    padding: 0 20px 20px;
    color: #f1c40f;
    font-size: 0.85rem;
}

/* Header Login - Normal Style */
.user-nav-log {
    text-decoration: none !important;
    background: transparent !important;
    color: #fff !important;
    padding: 8px 15px;
    border: none !important;
    border-radius: 5px;
    transition: all 0.2s;
    display: flex !important;
    align-items: center !important;
    cursor: pointer !important;
    box-shadow: none !important;
    margin-left: 10px;
}

.user-nav-log:hover {
    opacity: 0.7;
    background: rgba(255, 255, 255, 0.1);
    animation: none !important;
}

.user-nav-log i {
    font-size: 1.2rem !important;
    margin-right: 8px !important;
}

.user-nav-log span {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
}


.user-login-btn i {
    font-size: 1.4rem !important;
    margin-right: 12px !important;
}

.user-btn-text .fw-bold {
    font-family: 'Bebas Neue', cursive !important;
    font-size: 1.2rem !important;
    letter-spacing: 1px !important;
    display: block !important;
}

.user-btn-text .lh-1 {
    font-size: 0.75rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: #666 !important;
}

/* Responsive */
@media (max-width: 991px) {
    .sub-nav {
        display: none;
    }

    .side-banners {
        display: none;
    }
}

/* --- Cinematic Hero --- */
.cinematic-hero {
    position: relative;
    height: 90vh;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.hero-branding {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
}

.hero-fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(to top, #fff 0%, transparent 100%);
    z-index: 5;
}

.tracking-widest {
    letter-spacing: 15px;
}

.cinematicSwiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cinematic-bg {
    width: 100%;
    height: 100%;
}

.hero-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    overflow: hidden;
}

.urban-watermark {
    position: absolute;
    font-size: 130vh;
    font-family: 'Permanent Marker', cursive;
    color: #000;
    opacity: 0.45;
    z-index: -1;
    user-select: none;
    pointer-events: none;
    line-height: 1;
    transform: rotate(-10deg);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.cinematic-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cinematic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0) 35%,
            rgba(0, 0, 0, 0) 65%,
            rgba(0, 0, 0, 1) 100%);
    z-index: 1;
}

.cinematic-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.logo-urban-tilt {
    transform: rotate(-5deg) skew(-5deg);
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
    animation: urbanEntrance 1.5s ease-out;
}

@keyframes urbanEntrance {
    0% {
        opacity: 0;
        transform: scale(1.5) rotate(-15deg) skew(-15deg);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(-5deg) skew(-5deg);
        filter: blur(0);
    }
}

.btn-premium-white {
    background: #fff;
    color: #000;
    border-radius: 0;
    transition: all 0.4s ease;
    border: 2px solid #fff;
}

.btn-premium-white:hover {
    background: transparent;
    color: #fff;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .cinematic-content h1 {
        font-size: 4rem;
    }

    .cinematic-hero {
        height: 70vh;
    }

    .top-header .col-lg-7 {
        display: none;
    }

    /* Hide search on very small to clean up or move it */
}

@media (max-width: 576px) {
    .cinematic-content h1 {
        font-size: 3rem;
    }

    .cinematic-hero {
        height: 60vh;
    }

    .header-actions {
        justify-content: center;
        margin-top: 15px;
    }

    .top-header {
        padding: 10px 0;
    }

    .logo-text {
        font-size: 1.5rem;
        text-align: center;
        display: block;
    }
}

/* Rest of Animation etc... */
@keyframes jelly {
    0% {
        transform: scale(1, 1);
    }

    33% {
        transform: scale(1.2, 0.8);
    }

    45% {
        transform: scale(0.8, 1.2);
    }

    55% {
        transform: scale(1.1, 0.9);
    }

    66% {
        transform: scale(0.9, 1.1);
    }

    77% {
        transform: scale(1.05, 0.95);
    }

    100% {
        transform: scale(1, 1);
    }
}

/* BRUKUTU LOADING SCREEN */
.preloader-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #0a0a0a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999; /* Increased z-index */
    transition: opacity 0.8s ease-out;
}

body.preloader-active {
    overflow: hidden !important;
    height: 100vh !important;
}

.preloader-content {
    text-align: center;
    position: relative;
    width: 100%;
}

.logo-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}


.main-logo-text {
    position: relative;
    font-family: var(--font-display), 'Anton', sans-serif;
    font-size: clamp(2rem, 8vw, 5rem);
    color: #fff;
    z-index: 5;
    margin: 0;
    text-transform: uppercase;
    opacity: 0;
}

.main-logo-text span {
    font-size: clamp(3.5rem, 12vw, 8rem);
    vertical-align: middle;
}

.progress-wrapper {
    margin-top: 2rem;
    width: 250px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    z-index: 10;
    position: relative;
}

.progress-number {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.progress-bar-container {
    height: 2px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.progress-bar-inner {
    height: 100%;
    width: 0%;
    background-color: #fff;
    transition: width 0.1s linear;
}

.preloader-footer-text {
    margin-top: 3rem;
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: clamp(0.6rem, 2vw, 0.9rem);
    opacity: 0;
    z-index: 10;
    position: relative;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUpLogo {
    from {
        opacity: 0;
        transform: translateY(20px) scaleY(1.5) scaleX(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scaleY(1.5) scaleX(0.9);
    }
}

.logo-wrapper .bg-b-logo { animation: fadeInUpLogo 0.8s ease forwards; }
.logo-wrapper .main-logo-text { animation: fadeInUp 0.8s ease 0.2s forwards; }
.progress-wrapper { animation: fadeInUp 0.8s ease 0.4s forwards; }
.preloader-footer-text { animation: fadeInUp 0.8s ease 0.6s forwards; }

