 
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
/* Prevent scrolling while the preloader is visible */

body.is-loading {
    overflow: hidden;
}

/* Preloader container */

.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    visibility: visible;
    opacity: 1;
    background:
        radial-gradient(
            circle at center,
            rgba(49, 213, 237, 0.18),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            #f8fdff 0%,
            #e7f9ff 52%,
            #d6f4ff 100%
        );
    transition:
        opacity 0.65s ease,
        visibility 0.65s ease;
}

.preloader.is-hidden {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

/* Logo */

.preloader-logo {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 16px;
    animation: preloaderPulse 1.6s ease-in-out infinite;
}

/* Increase the existing brand orb inside the preloader */

.preloader-logo .brand-orb {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    box-shadow:
        inset 0 0 0 2px rgba(255, 255, 255, 0.26),
        0 10px 25px rgba(6, 74, 190, 0.25);
}

.preloader-logo .brand-orb::before,
.preloader-logo .brand-orb::after {
    left: 8px;
    width: 40px;
    height: 15px;
    border-width: 5px;
}

.preloader-logo .brand-orb::before {
    top: 10px;
}

.preloader-logo .brand-orb::after {
    bottom: 9px;
}

/* Wordmark */

.preloader-brand {
    display: flex;
    flex-direction: column;
    color: #061c67;
    line-height: 1;
}

.preloader-brand strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    font-style: italic;
    letter-spacing: -2px;
}

.preloader-brand small {
    margin-top: 8px;
    color: #233c61;
    font-size: 8px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

/* Loading message */

.preloader-text {
    position: relative;
    z-index: 3;
    margin-top: 26px;
    color: #56708e;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2.6px;
    animation: preloaderText 1.6s ease-in-out infinite;
}

/* Pulsating water rings */

.preloader-ripple {
    position: absolute;
    width: 270px;
    height: 270px;
    border: 2px solid rgba(5, 110, 240, 0.2);
    border-radius: 50%;
    animation: preloaderRipple 2.4s ease-out infinite;
}

.preloader-ripple--two {
    animation-delay: 1.2s;
}

/* Animations */

@keyframes preloaderPulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }
}

@keyframes preloaderRipple {
    0% {
        opacity: 0.8;
        transform: scale(0.45);
    }

    100% {
        opacity: 0;
        transform: scale(1.65);
    }
}

@keyframes preloaderText {
    0%,
    100% {
        opacity: 0.45;
    }

    50% {
        opacity: 1;
    }
}

/* Mobile */

@media (max-width: 560px) {
    .preloader-logo {
        gap: 12px;
        padding: 18px 22px;
        border-radius: 18px;
    }

    .preloader-logo .brand-orb {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
    }

    .preloader-logo .brand-orb::before,
    .preloader-logo .brand-orb::after {
        left: 6px;
        width: 34px;
        height: 13px;
        border-width: 4px;
    }

    .preloader-brand strong {
        font-size: 31px;
    }

    .preloader-brand small {
        font-size: 6.5px;
    }

    .preloader-ripple {
        width: 220px;
        height: 220px;
    }
}

/* Accessibility */

@media (prefers-reduced-motion: reduce) {
    .preloader-logo,
    .preloader-text,
    .preloader-ripple {
        animation: none;
    }
}
    @media (max-width: 560px) {
    .product-card {
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    .product-details {
        width: 100%;
        height: auto;
        padding: 32px 24px 10px;
    }

    .product-type {
        margin-top: 45px;
    }

    .product-details > p:not(.product-type) {
        max-width: 100%;
    }

    .product-image {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        height: 380px;
        margin-top: 20px;
        padding: 15px 20px 30px;
        overflow: visible;
    }

    .product-image img,
    .product-card--bottle .product-image img,
    .product-card--dispenser .product-image img {
        width: 100%;
        height: 100%;
        max-width: 350px;
        margin: 0 auto;
        object-fit: contain;
        object-position: center;
        transform: none;
    }

    .product-card:hover .product-image img {
        transform: none;
    }

    .product-halo {
        width: 220px;
        height: 220px;
        top: 50%;
        right: 50%;
        transform: translate(50%, -50%);
    }
    .social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 5px;
}

.social-icons a {
    width: 168px;
    height: 168px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.social-icons a i {
    display: block;
    color: inherit;
    font-size: 21px;
    line-height: 1;
}

/* Official social-media colours */

.social-icons .instagram:hover {
    border-color: transparent;
    background: linear-gradient(
        135deg,
        #833ab4,
        #fd1d1d,
        #fcb045
    );
    transform: translateY(-4px);
}

.social-icons .facebook:hover {
    border-color: #1877f2;
    background: #1877f2;
    transform: translateY(-4px);
}

.social-icons .whatsapp:hover {
    border-color: #25d366;
    background: #25d366;
    transform: translateY(-4px);
}

.social-handles {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.social-handles a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.social-handles a i {
    width: 20px;
    color: #31d5ed;
    font-size: 16px;
}

.social-handles a:hover {
    color: #ffffff;
    transform: translateX(4px);
}
}