:root {
    --alg-red: #b5121b;
    --alg-red-dark: #820b12;
    --alg-yellow: #ffe500;
    --alg-charcoal: #24252b;
    --alg-ink: #292a31;
    --alg-muted: #686a73;
    --alg-cream: #fff8ee;
    --alg-paper: #fffdf9;
    --alg-pink: #ffdbe3;
    --alg-blue: #dff4ff;
    --alg-line: rgba(36, 37, 43, .12);
    --alg-shadow-sm: 0 12px 30px rgba(36, 37, 43, .09);
    --alg-shadow: 0 24px 70px rgba(36, 37, 43, .14);
    --alg-radius: 20px;
}

html {
    scroll-behavior: smooth;
}

body.alg-site {
    min-width: 320px;
    margin: 0;
    color: var(--alg-ink);
    background: var(--alg-paper);
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.alg-site img {
    max-width: 100%;
}

.alg-site h1,
.alg-site h2,
.alg-site h3,
.alg-site h4 {
    color: var(--alg-charcoal);
    font-family: "Baloo 2", sans-serif;
    font-weight: 800;
    line-height: 1.08;
}

.alg-site a {
    color: var(--alg-red);
    text-underline-offset: .22em;
}

.alg-site a:hover {
    color: var(--alg-red-dark);
}

.alg-site :focus-visible {
    outline: 3px solid var(--alg-yellow) !important;
    outline-offset: 4px;
    box-shadow: none !important;
}

.alg-skip-link {
    position: fixed;
    z-index: 10000;
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    color: #fff !important;
    background: var(--alg-red);
    border-radius: 8px;
    transform: translateY(-150%);
    transition: transform .2s ease;
}

.alg-skip-link:focus {
    transform: translateY(0);
}

.py-lg-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.alg-section {
    padding-block: clamp(64px, 8vw, 112px);
}

.alg-section--cream {
    background: var(--alg-cream);
}

.alg-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--alg-red);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.alg-eyebrow::before {
    width: 28px;
    height: 3px;
    background: var(--alg-yellow);
    border-radius: 10px;
    content: "";
}

.alg-display {
    font-size: clamp(2.45rem, 5.4vw, 5.4rem);
    letter-spacing: -.035em;
}

.alg-title {
    font-size: clamp(2rem, 3.8vw, 3.75rem);
    letter-spacing: -.025em;
}

.alg-lead {
    color: var(--alg-muted);
    font-size: clamp(1rem, 1.5vw, 1.22rem);
}

.alg-btn {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: 2px solid var(--alg-red);
    border-radius: 12px;
    color: #fff !important;
    background: var(--alg-red);
    font-weight: 800;
    transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, color .22s ease;
}

.alg-btn:hover {
    color: #fff !important;
    background: var(--alg-red-dark);
    border-color: var(--alg-red-dark);
    box-shadow: 0 12px 26px rgba(181, 18, 27, .22);
    transform: translateY(-2px);
}

.alg-btn--outline {
    color: var(--alg-red) !important;
    background: transparent;
}

.alg-btn--outline:hover {
    color: #fff !important;
}

.alg-btn--yellow {
    color: var(--alg-charcoal) !important;
    background: var(--alg-yellow);
    border-color: var(--alg-yellow);
}

.alg-btn--yellow:hover {
    color: var(--alg-charcoal) !important;
    background: #fff078;
    border-color: #fff078;
}

.alg-header {
    position: relative;
    z-index: 1030;
    color: #fff;
    background: var(--alg-charcoal);
    box-shadow: 0 10px 30px rgba(17, 18, 22, .14);
}

.alg-header__accent,
.alg-footer__accent {
    height: 5px;
    background: linear-gradient(90deg, var(--alg-yellow) 0 58%, var(--alg-red) 58% 100%);
}

.alg-topbar {
    border-bottom: 1px solid rgba(255, 255, 255, .11);
    color: rgba(255, 255, 255, .82);
    font-size: .78rem;
}

.alg-topbar a {
    color: #fff;
    text-decoration: none;
}

.alg-topbar .fa-heart,
.alg-topbar .fa-phone,
.alg-topbar .fa-envelope {
    color: var(--alg-yellow);
}

.alg-navbar {
    min-height: 114px;
    padding-block: 8px;
    background: var(--alg-charcoal);
}

.alg-brand {
    width: 108px;
    margin-block: -15px -18px;
}

.alg-brand img {
    display: block;
    width: 108px;
    height: 108px;
    object-fit: contain;
    padding-bottom: 0.5em;
}

.alg-navbar .nav-link {
    position: relative;
    padding: 12px 14px !important;
    color: rgba(255, 255, 255, .84);
    font-size: .86rem;
    font-weight: 800;
}

.alg-navbar .nav-link::after {
    position: absolute;
    right: 14px;
    bottom: 6px;
    left: 14px;
    height: 3px;
    background: var(--alg-yellow);
    border-radius: 4px;
    content: "";
    transform: scaleX(0);
    transition: transform .2s ease;
}

.alg-navbar .nav-link:hover,
.alg-navbar .nav-link.active {
    color: #fff;
}

.alg-navbar .nav-link:hover::after,
.alg-navbar .nav-link.active::after {
    transform: scaleX(1);
}

.alg-navbar .navbar-toggler {
    border-color: rgba(255, 255, 255, .35);
    background: #fff;
}

.alg-btn--header {
    min-height: 44px;
    padding: 9px 17px;
    font-size: .82rem;
}

.alg-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 18%, rgba(255, 229, 0, .36) 0 7px, transparent 8px),
        radial-gradient(circle at 94% 28%, rgba(255, 183, 201, .55) 0 10px, transparent 11px),
        radial-gradient(circle at 45% 87%, rgba(137, 218, 255, .45) 0 8px, transparent 9px),
        linear-gradient(115deg, #fff5e5, #fffdf9 62%);
}

.alg-hero::after {
    position: absolute;
    right: -140px;
    bottom: -260px;
    width: 620px;
    height: 420px;
    background: rgba(255, 229, 0, .12);
    border-radius: 50%;
    content: "";
    transform: rotate(-12deg);
}

.alg-hero__inner {
    position: relative;
    z-index: 1;
    min-height: 670px;
    padding-block: clamp(65px, 8vw, 105px);
}

.alg-hero__copy {
    max-width: 620px;
}

.alg-hero__copy h1 span {
    color: var(--alg-red);
}

.alg-hero__copy .alg-lead {
    max-width: 570px;
}

.alg-hero__visual {
    position: relative;
}

.alg-hero__card {
    position: relative;
    overflow: hidden;
    border: 12px solid #fff;
    border-radius: 32px;
    background: #fff;
    box-shadow: var(--alg-shadow);
    transform: rotate(1deg);
}

.alg-hero__card .carousel-item {
    background: #fff;
}

.alg-hero__card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.alg-hero__badge {
    position: absolute;
    z-index: 3;
    right: -12px;
    bottom: 28px;
    max-width: 190px;
    padding: 15px 18px;
    color: var(--alg-charcoal);
    background: var(--alg-yellow);
    border: 5px solid #fff;
    border-radius: 16px;
    box-shadow: var(--alg-shadow-sm);
    font-weight: 900;
    line-height: 1.25;
    transform: rotate(-2deg);
}

.alg-hero .carousel-indicators {
    margin-bottom: 12px;
}

.alg-hero .carousel-indicators [data-bs-target] {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 50%;
    background-color: var(--alg-red);
}

.alg-trust-strip {
    position: relative;
    z-index: 2;
    margin-top: -42px;
}

.alg-trust-strip__inner {
    padding: 22px;
    border: 1px solid var(--alg-line);
    border-radius: var(--alg-radius);
    background: #fff;
    box-shadow: var(--alg-shadow-sm);
}

.alg-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 16px;
}

.alg-trust-item i {
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    place-items: center;
    color: var(--alg-red);
    background: var(--alg-cream);
    border-radius: 50%;
    font-size: 1.2rem;
}

.alg-trust-item strong,
.alg-trust-item span {
    display: block;
}

.alg-trust-item span {
    color: var(--alg-muted);
    font-size: .84rem;
}

.alg-heading {
    max-width: 750px;
    margin: 0 auto clamp(38px, 6vw, 62px);
    text-align: center;
}

.alg-product-grid {
    --bs-gutter-x: 1.6rem;
    --bs-gutter-y: 1.6rem;
}

.alg-product-card {
    position: relative;
    display: flex;
    height: 100%;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid var(--alg-line);
    border-radius: var(--alg-radius);
    background: #fff;
    box-shadow: var(--alg-shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease;
}

.alg-product-card:hover {
    box-shadow: var(--alg-shadow);
    transform: translateY(-8px);
}

.alg-product-card__media {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fff, var(--alg-cream));
}

.alg-product-card__media::after {
    position: absolute;
    inset: auto 0 0;
    height: 34px;
    background: var(--card-accent, var(--alg-yellow));
    clip-path: polygon(0 42%, 10% 62%, 21% 34%, 33% 69%, 46% 38%, 59% 65%, 73% 35%, 87% 62%, 100% 38%, 100% 100%, 0 100%);
    content: "";
    opacity: .28;
}

.alg-product-card__media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform .55s ease, filter .4s ease;
}

.alg-product-card:hover .alg-product-card__media img {
    filter: saturate(1.06) contrast(1.02);
    transform: scale(1.035);
}

.alg-product-card__body {
    display: flex;
    height: 100%;
    padding: 27px;
    flex-direction: column;
}

.alg-product-card h2,
.alg-product-card h3 {
    margin-bottom: 8px;
    color: var(--alg-red);
    font-size: 1.7rem;
}

.alg-product-card__subtitle {
    min-height: 3.2em;
    color: var(--alg-muted);
}

.alg-product-card__excerpt {
    color: var(--alg-muted);
    font-size: .93rem;
}

.alg-product-card .alg-btn {
    width: 100%;
    margin-top: auto;
}

.alg-story {
    overflow: hidden;
    background: linear-gradient(100deg, #fff, var(--alg-cream));
}

.alg-story__media {
    position: relative;
}

.alg-story__media::before {
    position: absolute;
    top: -20px;
    right: 20px;
    bottom: 20px;
    left: -20px;
    border: 2px solid var(--alg-yellow);
    border-radius: var(--alg-radius);
    content: "";
}

.alg-story__media img {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--alg-radius);
    box-shadow: var(--alg-shadow);
}

.alg-values {
    margin-top: 34px;
    border-top: 1px solid var(--alg-line);
}

.alg-value {
    display: flex;
    gap: 14px;
    padding-block: 18px;
    border-bottom: 1px solid var(--alg-line);
}

.alg-value i {
    color: var(--alg-red);
    font-size: 1.35rem;
}

.alg-cta {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(110deg, var(--alg-red-dark), var(--alg-red));
}

.alg-cta::after {
    position: absolute;
    right: -70px;
    bottom: -120px;
    width: 320px;
    height: 320px;
    border: 55px solid rgba(255, 229, 0, .12);
    border-radius: 50%;
    content: "";
}

.alg-cta h2,
.alg-cta p {
    color: #fff;
}

.alg-newsletter {
    color: #fff;
    background: var(--alg-charcoal);
}

.alg-newsletter h2,
.alg-newsletter p {
    color: #fff;
}

.alg-newsletter .form-control {
    min-height: 52px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 12px;
}

.alg-page-hero {
    position: relative;
    overflow: hidden;
    padding-block: clamp(58px, 8vw, 100px);
    background: var(--alg-cream);
}

.alg-page-hero::after {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 290px;
    height: 290px;
    background: rgba(255, 229, 0, .25);
    border-radius: 50%;
    content: "";
}

.alg-page-hero h1 {
    margin: 0;
    font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.alg-breadcrumb {
    color: var(--alg-muted);
    font-size: .86rem;
}

.alg-article {
    padding-block: clamp(55px, 8vw, 100px);
}

.alg-article__cover {
    overflow: hidden;
    margin-bottom: clamp(38px, 6vw, 70px);
    border-radius: var(--alg-radius);
    box-shadow: var(--alg-shadow);
}

.alg-article__cover img {
    width: 100%;
    aspect-ratio: 16 / 8;
    object-fit: cover;
}

.alg-article__content {
    max-width: 860px;
    margin-inline: auto;
    color: #41424a;
    font-size: 1.08rem;
}

.alg-article__content p {
    margin-bottom: 1.35em;
}

.alg-article__content img {
    height: auto !important;
    border-radius: 12px;
}

.alg-article__content table {
    display: block;
    width: 100% !important;
    overflow-x: auto;
}

.alg-gallery-card {
    display: block;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--alg-shadow-sm);
}

.alg-gallery-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .35s ease;
}

.alg-gallery-card:hover img {
    transform: scale(1.04);
}

.alg-contact-card {
    height: 100%;
    padding: clamp(26px, 4vw, 44px);
    border: 1px solid var(--alg-line);
    border-radius: var(--alg-radius);
    background: #fff;
    box-shadow: var(--alg-shadow-sm);
}

.alg-contact-card .form-control {
    min-height: 52px;
    border-color: var(--alg-line);
    border-radius: 12px;
    background: #fffdf9;
}

.alg-contact-card textarea.form-control {
    min-height: 160px;
}

.alg-map {
    min-height: 100%;
    overflow: hidden;
    border-radius: var(--alg-radius);
    box-shadow: var(--alg-shadow-sm);
}

.alg-map iframe {
    display: block;
    width: 100%;
    min-height: 610px;
    border: 0;
}

.alg-contact-channel {
    display: flex;
    height: 100%;
    gap: 16px;
    padding: 24px;
    border: 1px solid var(--alg-line);
    border-radius: 16px;
    background: #fff;
}

.alg-contact-channel i {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    place-items: center;
    color: var(--alg-red);
    background: var(--alg-cream);
    border-radius: 50%;
}

.alg-footer {
    color: rgba(255, 255, 255, .75);
    background: var(--alg-charcoal);
}

.alg-footer h2 {
    margin-bottom: 20px;
    color: var(--alg-yellow);
    font-family: "Nunito Sans", sans-serif;
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.alg-footer__logo {
    display: block;
    width: 112px;
    height: 112px;
    margin-bottom: 18px;
    object-fit: contain;
}

.alg-footer__lead {
    max-width: 360px;
}

.alg-footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.alg-footer li {
    margin-bottom: 8px;
}

.alg-footer a {
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
}

.alg-footer a:hover {
    color: #fff;
}

.alg-footer address {
    margin: 0;
    font-style: normal;
}

.alg-footer address p {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.alg-footer address i {
    width: 18px;
    padding-top: 6px;
    color: var(--alg-yellow);
    text-align: center;
}

.alg-social {
    display: flex;
    gap: 10px;
}

.alg-social a {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

.alg-social a:hover {
    color: var(--alg-yellow);
    border-color: var(--alg-yellow);
    transform: translateY(-2px);
}

.alg-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    background: #1c1d22;
}

.alg-footer__bottom p {
    margin: 0;
    font-size: .74rem;
}

.alg-cookie {
    position: fixed;
    z-index: 1090;
    right: 22px;
    bottom: 22px;
    left: 22px;
    display: grid;
    max-width: 980px;
    padding: 22px;
    margin-inline: auto;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
    color: #fff;
    background: rgba(36, 37, 43, .97);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 18px;
    box-shadow: 0 22px 70px rgba(0, 0, 0, .3);
    backdrop-filter: blur(12px);
    transition: opacity .25s ease, transform .25s ease;
}

.alg-cookie.is-leaving {
    opacity: 0;
    transform: translateY(20px);
}

.alg-cookie__icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    color: var(--alg-charcoal);
    background: var(--alg-yellow);
    border-radius: 50%;
    font-size: 1.4rem;
}

.alg-cookie h2 {
    margin: 0 0 3px;
    color: #fff;
    font-family: "Nunito Sans", sans-serif;
    font-size: 1rem;
}

.alg-cookie p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: .84rem;
}

.alg-cookie a {
    color: var(--alg-yellow);
}

[data-alg-reveal] {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .65s ease, transform .65s cubic-bezier(.2, .7, .2, 1);
}

[data-alg-reveal].is-visible {
    opacity: 1;
    transform: none;
}

.page_404 {
    padding-block: 90px;
    text-align: center;
}

@media (max-width: 991.98px) {
    .alg-navbar {
        min-height: 82px;
    }

    .alg-brand {
        width: 88px;
        margin-block: -10px;
    }

    .alg-brand img {
        width: 88px;
        height: 88px;
    }

    .alg-navbar .navbar-collapse {
        padding: 22px;
        margin: 12px 0 6px;
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 16px;
        background: #1c1d22;
    }

    .alg-navbar .nav-link {
        padding-inline: 0 !important;
    }

    .alg-navbar .nav-link::after {
        right: auto;
        left: 0;
        width: 34px;
    }

    .alg-btn--header {
        width: 100%;
        margin: 12px 0 0 !important;
    }

    .alg-hero__inner {
        min-height: auto;
    }

    .alg-hero__copy {
        margin-bottom: 45px;
    }

    .alg-trust-strip {
        margin-top: 0;
        padding-top: 24px;
    }

    .alg-map iframe {
        min-height: 420px;
    }
}

@media (max-width: 767.98px) {
    .alg-topbar p {
        display: none;
    }

    .alg-topbar .container,
    .alg-topbar .d-flex {
        justify-content: center !important;
    }

    .alg-display {
        font-size: clamp(2.6rem, 12vw, 4rem);
    }

    .alg-hero__badge {
        right: 4px;
        bottom: 12px;
        max-width: 155px;
        font-size: .78rem;
    }

    .alg-trust-item {
        border-bottom: 1px solid var(--alg-line);
    }

    .alg-trust-item:last-child {
        border-bottom: 0;
    }

    .alg-cookie {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .alg-cookie__icon {
        margin-inline: auto;
    }

    .alg-cookie .alg-btn {
        width: 100%;
    }

    .py-lg-6 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

    [data-alg-reveal] {
        opacity: 1;
        transform: none;
    }
}