.site-preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(255, 230, 109, 0.42), transparent 34%),
        radial-gradient(circle at top right, rgba(78, 205, 196, 0.28), transparent 30%),
        linear-gradient(180deg, #fffdfb 0%, #fff8f1 100%);
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.site-preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.preloader-stage {
    position: relative;
    width: 190px;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-core {
    position: relative;
    z-index: 2;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 42px rgba(90, 97, 138, 0.14);
    overflow: hidden;
}

.preloader-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: auto;
    max-width: 78%;
    max-height: 48px;
    height: auto;
    object-fit: contain;
    object-position: center;
    transform: translate(-50%, -50%);
    animation: preloaderLogoPulse 1.8s ease-in-out infinite;
}

.preloader-orbit {
    position: absolute;
    inset: 0;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    border: 2px dashed rgba(47, 53, 80, 0.09);
    animation: preloaderSpin 9s linear infinite;
}

.preloader-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    box-shadow: 0 10px 18px rgba(90, 97, 138, 0.16);
}

.preloader-dot.dot-coral {
    top: -8px;
    left: 50%;
    margin-left: -10px;
    background: #ff8b8b;
}

.preloader-dot.dot-mint {
    top: 50%;
    right: -8px;
    margin-top: -10px;
    background: #4ecdc4;
}

.preloader-dot.dot-sun {
    bottom: -8px;
    left: 50%;
    margin-left: -10px;
    background: #ffd56f;
}

.preloader-dot.dot-lilac {
    top: 50%;
    left: -8px;
    margin-top: -10px;
    background: #cdb4ff;
}

.preloader-text {
    margin: 0;
    font-family: "Baloo 2", cursive;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #2f3550;
}

.preloader-cloud {
    position: absolute;
    width: 240px;
    height: 88px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    filter: blur(1px);
}

.preloader-cloud::before,
.preloader-cloud::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: inherit;
}

.preloader-cloud::before {
    width: 92px;
    height: 92px;
    left: 26px;
    top: -30px;
}

.preloader-cloud::after {
    width: 110px;
    height: 110px;
    right: 28px;
    top: -42px;
}

.preloader-cloud-left {
    top: 16%;
    left: -40px;
    animation: preloaderFloatLeft 10s ease-in-out infinite;
}

.preloader-cloud-right {
    right: -28px;
    bottom: 18%;
    transform: scale(0.88);
    animation: preloaderFloatRight 11s ease-in-out infinite;
}

@keyframes preloaderSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes preloaderLogoPulse {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.06);
    }
}

@keyframes preloaderFloatLeft {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(38px, -12px, 0);
    }
}

@keyframes preloaderFloatRight {
    0%,
    100% {
        transform: scale(0.88) translate3d(0, 0, 0);
    }

    50% {
        transform: scale(0.88) translate3d(-34px, 12px, 0);
    }
}

.page-stage {
    min-height: 0;
    padding: 0;
}

.home-hero {
    padding: 0;
}

.home-slider-wrap {
    position: relative;
}

.home-slider.owl-carousel {
    overflow: hidden;
}

.home-slide-item {
    padding: 0;
}

.home-slide-frame {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: hidden;
}

.slide-loader {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 250, 244, 0.82);
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.slide-loader-ring {
    width: 44px;
    height: 44px;
    border: 4px solid rgba(47, 53, 80, 0.14);
    border-top-color: #ff6b6b;
    border-right-color: #4ecdc4;
    border-radius: 50%;
    animation: slideLoaderSpin 0.9s linear infinite;
}

.slide-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    filter: none;
}

.home-slide-frame.is-loading .slide-image {
    opacity: 0;
}

.home-slide-frame:not(.is-loading) .slide-loader {
    opacity: 0;
    visibility: hidden;
}

.home-slide-frame.slide-animate .slide-image {
    animation: bannerReveal 0.9s ease;
}

.desktop-slide-image {
    display: block !important;
}

.mobile-slide-image {
    display: none !important;
}

.home-slider .owl-item .home-slide-frame {
    transform: scale(1);
    opacity: 1;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.home-slider .owl-item.active .home-slide-frame {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.home-slider .owl-item.active .slide-image {
    animation: bannerReveal 0.9s ease;
}

.home-slider .owl-dots {
    margin-top: 12px;
    text-align: center;
}

.home-slider .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px 6px;
    background: rgba(47, 53, 80, 0.18);
    transition: all 0.3s ease;
}

.home-slider .owl-dots .owl-dot.active span {
    width: 34px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
}

.home-slider .owl-nav {
    margin-top: 0;
}

.home-slider .owl-nav button.owl-prev,
.home-slider .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.88) !important;
    color: #2f3550 !important;
    box-shadow: 0 18px 30px rgba(90, 97, 138, 0.16);
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.home-slider .owl-nav button.owl-prev:hover,
.home-slider .owl-nav button.owl-next:hover {
    background: #ffffff !important;
    color: #ff6b6b !important;
}

.home-slider .owl-nav button.owl-prev {
    left: 14px;
}

.home-slider .owl-nav button.owl-next {
    right: 14px;
}

.icon-marquee-section {
    padding: 18px 0 26px;
    overflow: hidden;
}

.icon-marquee {
    display: flex;
    align-items: stretch;
    gap: 18px;
    width: max-content;
    animation: iconMarqueeRight 26s linear infinite;
}

.icon-marquee-track {
    display: flex;
    align-items: stretch;
    gap: 18px;
}

.icon-tile {
    width: 120px;
    flex: 0 0 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    color: #2f3550;
    text-align: center;
}

.icon-tile img {
    width: 84px;
    height: 84px;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: 0 12px 26px rgba(90, 97, 138, 0.12);
}

.icon-tile span {
    font-weight: 800;
    font-size: 0.95rem;
    line-height: 1.25;
}

.icon-marquee-section:hover .icon-marquee {
    animation-play-state: paused;
}

.new-arrival-section {
    padding: 18px 0 48px;
}

.section-heading-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.section-title {
    margin: 14px 0 8px;
    font-family: 'Baloo 2', cursive;
    font-size: clamp(2rem, 3vw, 3rem);
    color: #2f3550;
}

.section-text {
    margin: 0;
    max-width: 620px;
    color: #6f7693;
    line-height: 1.7;
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2f3550;
    font-weight: 800;
}

.arrival-card {
    position: relative;
    height: 100%;
    padding: 18px;
    border-radius: 30px;
    box-shadow: 0 20px 38px rgba(90, 97, 138, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.arrival-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 46px rgba(90, 97, 138, 0.16);
}

.arrival-card-coral {
    background: linear-gradient(180deg, rgba(253, 226, 228, 0.9), #ffffff 68%);
}

.arrival-card-mint {
    background: linear-gradient(180deg, rgba(217, 248, 244, 0.92), #ffffff 68%);
}

.arrival-card-sun {
    background: linear-gradient(180deg, rgba(255, 242, 184, 0.92), #ffffff 68%);
}

.arrival-card-sky {
    background: linear-gradient(180deg, rgba(223, 241, 255, 0.92), #ffffff 68%);
}

.arrival-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: #ffffff;
    color: #ff6b6b;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(90, 97, 138, 0.1);
}

.arrival-wishlist {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    color: #2f3550;
    box-shadow: 0 8px 18px rgba(90, 97, 138, 0.1);
    transition: all 0.3s ease;
}

.arrival-wishlist:hover {
    color: #ff6b6b;
    transform: translateY(-2px);
}

.arrival-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.7);
    padding: 16px;
}

.arrival-image {
    width: 100%;
    height: 100%;
    max-height: 220px;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
}

.arrival-card:hover .arrival-image {
    transform: scale(1.05);
}

.arrival-content {
    padding: 18px 4px 4px;
}

.arrival-category {
    display: inline-block;
    margin-bottom: 8px;
    color: #6f7693;
    font-size: 0.88rem;
    font-weight: 700;
}

.arrival-content h3 {
    margin: 0 0 12px;
    font-family: 'Baloo 2', cursive;
    font-size: 1.45rem;
    line-height: 1.15;
    color: #2f3550;
}

.arrival-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.arrival-meta strong {
    color: #2f3550;
    font-size: 1.05rem;
}

.arrival-meta span {
    color: #6f7693;
    font-weight: 800;
}

.arrival-meta i {
    color: #ffb703;
}

.arrival-cart-btn {
    width: 100%;
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    padding: 11px 16px;
    background: linear-gradient(90deg, #ff6b6b, #ff8b8b);
    color: #ffffff;
    font-weight: 800;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 12px 22px rgba(255, 107, 107, 0.2);
}

.arrival-cart-btn:hover {
    transform: translateY(-2px);
}

.promo-banner-section {
    padding: 6px 0 48px;
}

.promo-banner-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    width: 100%;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.promo-banner-image {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: fill;
    display: block;
}

.trending-products-section {
    position: relative;
    padding: 8px 0 52px;
}

.trending-products-slider .trending-slide-item {
    padding: 8px 6px 12px;
}

.trending-products-slider .owl-stage-outer {
    margin: -8px -6px -12px;
    padding: 8px 6px 12px;
}

.trending-products-slider .owl-nav {
    position: absolute;
    top: -74px;
    right: 0;
    margin-top: 0;
}

.trending-products-slider .owl-nav button.owl-prev,
.trending-products-slider .owl-nav button.owl-next {
    width: 46px;
    height: 46px;
    border-radius: 50% !important;
    background: #ffffff !important;
    color: #2f3550 !important;
    box-shadow: 0 14px 26px rgba(90, 97, 138, 0.14);
    transition: all 0.3s ease;
}

.trending-products-slider .owl-nav button.owl-prev:hover,
.trending-products-slider .owl-nav button.owl-next:hover {
    color: #ff6b6b !important;
    transform: translateY(-2px);
}

.trending-products-slider .owl-nav button.owl-prev {
    margin-right: 10px;
}

.popular-brands-section {
    padding: 0 0 54px;
}

.brand-heading-wrap {
    margin-bottom: 22px;
}

.brands-slider .brand-slide-item {
    padding: 6px;
}

.brand-logo-card {
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 16px 28px rgba(90, 97, 138, 0.1);
}

.brand-logo-card img {
    object-fit: contain;
    max-width: 100%;
    width: auto;
    height: 52px;
    display: block;
}

.instagram-section {
    padding: 0 0 56px;
}

.instagram-strip-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 26px;
    padding: 0 16px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
}

.instagram-tile {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: block;
}

.instagram-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.instagram-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(47, 53, 80, 0.18);
    color: #ffffff;
    font-size: 1.45rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-tile:hover img {
    transform: scale(1.06);
}

.instagram-tile:hover .instagram-overlay {
    opacity: 1;
}

@keyframes heroFloatIn {
    0% {
        opacity: 0;
        transform: translateY(24px) scale(0.96);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes bannerReveal {
    0% {
        opacity: 0.2;
        transform: scale(1.06) rotate(0.4deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes slideLoaderSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes iconMarqueeRight {
    0% {
        transform: translateX(calc(-50% - 9px));
    }

    100% {
        transform: translateX(0);
    }
}

@media (max-width: 991px) {
    .home-slide-frame {
        min-height: 340px;
    }

    .home-slider .owl-nav button.owl-prev,
    .home-slider .owl-nav button.owl-next {
        width: 46px;
        height: 46px;
    }

    .icon-tile {
        width: 106px;
        flex-basis: 106px;
    }

    .icon-tile img {
        width: 78px;
        height: 78px;
        border-radius: 22px;
    }

    .section-heading-wrap {
        align-items: flex-start;
        flex-direction: column;
    }

    .promo-banner-card {
        min-height: 180px;
        border-radius: 0;
        padding: 0;
    }

    .promo-banner-image {
        min-height: 180px;
    }

    .trending-products-slider .trending-slide-item {
        padding: 6px 4px 10px;
    }

    .trending-products-slider .owl-stage-outer {
        margin: -6px -4px -10px;
        padding: 6px 4px 10px;
    }

    .trending-products-slider .owl-nav {
        top: -68px;
    }

    .brand-logo-card {
        min-height: 100px;
        padding: 16px;
    }

    .instagram-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .preloader-core {
        width: 112px;
        height: 112px;
    }

    .preloader-logo {
        max-width: 76%;
        max-height: 40px;
    }

    .preloader-orbit {
        width: 154px;
        height: 154px;
    }

    .preloader-stage {
        width: 154px;
        height: 154px;
    }

    .preloader-dot {
        width: 16px;
        height: 16px;
    }

    .preloader-dot.dot-coral,
    .preloader-dot.dot-sun {
        margin-left: -8px;
    }

    .preloader-dot.dot-mint,
    .preloader-dot.dot-lilac {
        margin-top: -8px;
    }

    .preloader-text {
        font-size: 1rem;
        text-align: center;
        padding: 0 18px;
    }

    .preloader-cloud {
        width: 170px;
        height: 68px;
    }

    .page-stage {
        padding: 0;
    }

    .home-slide-item {
        padding: 0;
    }

    .home-slide-frame {
        min-height: 230px;
    }

    .desktop-slide-image {
        display: none !important;
    }

    .mobile-slide-image {
        display: block !important;
    }

    .home-slider .owl-nav button.owl-prev,
    .home-slider .owl-nav button.owl-next {
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        width: 36px;
        height: 36px;
        font-size: 0.95rem !important;
        box-shadow: 0 12px 22px rgba(90, 97, 138, 0.14);
        opacity: 0.92;
    }

    .home-slider .owl-nav button.owl-prev {
        left: 8px;
    }

    .home-slider .owl-nav button.owl-next {
        right: 8px;
    }

    .home-slider .owl-dots {
        margin-top: 8px;
    }

    .home-slider .owl-dots .owl-dot span {
        width: 10px;
        height: 10px;
        margin: 4px 5px;
    }

    .home-slider .owl-dots .owl-dot.active span {
        width: 24px;
    }

    .icon-marquee-section {
        padding: 14px 0 20px;
    }

    .icon-marquee-track {
        gap: 14px;
    }

    .icon-tile {
        width: 90px;
        flex-basis: 90px;
        gap: 8px;
    }

    .icon-tile img {
        width: 68px;
        height: 68px;
        border-radius: 20px;
        padding: 8px;
    }

    .icon-tile span {
        font-size: 0.82rem;
    }

    .new-arrival-section {
        padding: 12px 0 36px;
    }

    .arrival-card {
        border-radius: 24px;
        padding: 16px;
    }

    .arrival-image-wrap {
        min-height: 220px;
    }

    .arrival-image {
        max-height: 190px;
    }

    .arrival-content h3 {
        font-size: 1.28rem;
    }
}

@media (max-width: 575px) {
    .new-arrival-section {
        padding: 10px 0 30px;
    }

    .section-heading-wrap {
        margin-bottom: 18px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-text {
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .section-link {
        font-size: 0.9rem;
    }

    .arrival-card {
        padding: 12px;
        border-radius: 18px;
    }

    .arrival-badge {
        top: 12px;
        left: 12px;
        padding: 5px 10px;
        font-size: 0.62rem;
    }

    .arrival-wishlist {
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
        font-size: 0.82rem;
    }

    .arrival-image-wrap {
        min-height: 150px;
        padding: 10px;
        border-radius: 16px;
    }

    .arrival-image {
        max-height: 130px;
    }

    .arrival-content {
        padding: 12px 2px 2px;
    }

    .arrival-category {
        margin-bottom: 6px;
        font-size: 0.72rem;
    }

    .arrival-content h3 {
        margin-bottom: 8px;
        font-size: 0.98rem;
        line-height: 1.2;
    }

    .arrival-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .arrival-meta strong {
        font-size: 0.92rem;
    }

    .arrival-meta span {
        font-size: 0.76rem;
    }

    .arrival-cart-btn {
        margin-top: 10px;
        padding: 9px 12px;
        font-size: 0.76rem;
        gap: 6px;
    }

    .promo-banner-section {
        padding: 0 0 34px;
    }

    .promo-banner-card {
        min-height: 0;
        padding: 0;
        border-radius: 0;
    }

    .promo-banner-image {
        min-height: 140px;
    }

    .trending-products-section {
        padding: 0 0 34px;
    }

    .trending-products-slider .owl-nav {
        position: static;
        text-align: center;
        margin-top: 8px;
    }

    .trending-products-slider .owl-nav button.owl-prev,
    .trending-products-slider .owl-nav button.owl-next {
        width: 38px;
        height: 38px;
        font-size: 0.9rem !important;
    }

    .popular-brands-section {
        padding: 0 0 36px;
    }

    .brand-logo-card {
        min-height: 86px;
        padding: 14px;
        border-radius: 18px;
    }

    .brand-logo-card img {
        height: 40px;
    }

    .instagram-section {
        padding: 0 0 38px;
    }

    .instagram-strip-head {
        margin-bottom: 18px;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .instagram-overlay {
        font-size: 1.15rem;
    }
}
