/* VisionPlus premium page loader */
#preloader-active.vp-loader-screen {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 40%, rgba(214, 232, 250, .7), transparent 34%),
        linear-gradient(145deg, #ffffff 0%, #f5f9fd 52%, #edf5fb 100%);
    opacity: 1;
    visibility: visible;
    transition: opacity .55s ease, visibility .55s ease;
}

#preloader-active.vp-loader-screen::before,
#preloader-active.vp-loader-screen::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(19, 93, 166, .08);
    border-radius: 50%;
}

#preloader-active.vp-loader-screen::before { transform: translate(-52%, -48%); }
#preloader-active.vp-loader-screen::after { transform: translate(52%, 48%); }
#preloader-active.vp-loader-screen.is-leaving { opacity: 0; visibility: hidden; pointer-events: none; }

.vp-loader-content {
    position: relative;
    z-index: 1;
    width: min(320px, calc(100vw - 48px));
    text-align: center;
    animation: vpLoaderEnter .6s cubic-bezier(.2, .8, .2, 1) both;
}

.vp-loader-logo {
    display: block;
    width: min(190px, 62vw);
    height: auto;
    margin: 0 auto 30px;
}

.vp-loader-glasses {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 48px;
    margin: 0 auto 24px;
}

.vp-loader-lens {
    position: relative;
    width: 56px;
    height: 38px;
    overflow: hidden;
    border: 3px solid #143e69;
    border-radius: 13px 13px 20px 20px;
    background: rgba(255, 255, 255, .7);
    box-shadow: 0 8px 20px rgba(20, 62, 105, .08);
}

.vp-loader-lens::after {
    content: "";
    position: absolute;
    inset: -12px auto -12px -30px;
    width: 22px;
    background: linear-gradient(90deg, transparent, rgba(89, 174, 236, .55), transparent);
    transform: skewX(-18deg);
    animation: vpLensShine 1.55s ease-in-out infinite;
}

.vp-loader-lens-right::after { animation-delay: .12s; }
.vp-loader-bridge { width: 18px; height: 8px; margin: 0 -1px; border-top: 3px solid #143e69; border-radius: 50%; }

.vp-loader-message {
    margin: 0;
    color: #17324d;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .03em;
}

.vp-loader-progress {
    width: 132px;
    height: 3px;
    margin: 14px auto 0;
    overflow: hidden;
    border-radius: 999px;
    background: #dce8f2;
}

.vp-loader-progress span {
    display: block;
    width: 48%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #143e69, #3e8dcc);
    animation: vpProgress 1.25s ease-in-out infinite;
}

@keyframes vpLoaderEnter { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes vpLensShine { 0% { left: -35px; opacity: 0; } 35%, 70% { opacity: 1; } 100% { left: 78px; opacity: 0; } }
@keyframes vpProgress { 0% { transform: translateX(-110%); } 100% { transform: translateX(215%); } }

@media (prefers-reduced-motion: reduce) {
    .vp-loader-content,
    .vp-loader-lens::after,
    .vp-loader-progress span { animation: none !important; }
}

@media only screen and (max-width: 769px) {
    .quick-view-btn {
        display: none !important;
    }
}
@media only screen and (max-width: 425px) {
    .selec-btns {
        justify-content: center;
    }
    .detail-extralink {
        justify-content: center;
    }
}

/* Product Card Refresh */
.product-cart-wrap:not(.small) {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: transform 0.24s ease;
}

.product-cart-wrap:not(.small):hover {
    transform: translateY(-4px);
}

.product-cart-wrap:not(.small) .product-img-action-wrap {
    position: relative;
    padding: 0;
    background: transparent;
    max-height: none;
    overflow: visible;
}

.product-cart-wrap:not(.small) .product-img-action-wrap .product-img {
    border-radius: 0;
    background:
        radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 42%),
        linear-gradient(180deg, #f7f7f5 0%, #eff1ed 100%);
    overflow: hidden;
}

.product-cart-wrap:not(.small) .product-img-action-wrap .product-img a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1.06;
    padding: 0;
}

.product-cart-wrap:not(.small) .product-img-action-wrap .product-img a::after {
    content: "";
    position: absolute;
    left: 16%;
    right: 16%;
    bottom: 8%;
    height: 16px;
    background: radial-gradient(circle, rgba(16, 24, 40, 0.12), rgba(16, 24, 40, 0));
    filter: blur(6px);
    pointer-events: none;
}

.product-cart-wrap:not(.small) .product-img-action-wrap .product-img a img {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
    padding: 8px 8px 0;
}

.product-cart-wrap:not(.small) .product-img-action-wrap .product-img a img.default-img,
.product-cart-wrap:not(.small) .product-img-action-wrap .product-img a img.hover-img {
    transform: scale(1.14);
    transition: transform 0.45s ease, opacity 0.25s ease, visibility 0.25s ease;
}

.product-cart-wrap:not(.small):hover .product-img-action-wrap .product-img a img.default-img,
.product-cart-wrap:not(.small):hover .product-img-action-wrap .product-img a img.hover-img {
    transform: scale(1.16);
}

.product-cart-wrap:not(.small) .product-img-action-wrap > .product-action-1 {
    position: absolute;
    top: 14px;
    right: 14px;
    left: auto;
    display: flex;
    flex-direction: row;
    gap: 8px;
    transform: translateY(-6px);
    opacity: 0;
    visibility: hidden;
    z-index: 3;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.product-cart-wrap:not(.small):hover .product-img-action-wrap > .product-action-1 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.product-cart-wrap:not(.small) .product-img-action-wrap > .product-action-1 .action-btn {
    width: 36px;
    height: 36px;
    margin-right: 0;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: #101828;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
    line-height: 36px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.product-cart-wrap:not(.small) .product-img-action-wrap > .product-action-1 .action-btn i {
    color: inherit;
    font-size: 14px;
}

.product-cart-wrap:not(.small) .product-img-action-wrap > .product-action-1 .action-btn:hover {
    background: #101828;
    color: #fff;
}

.product-cart-wrap:not(.small) .product-img-action-wrap > .product-action-1 .action-btn:hover i {
    color: inherit;
}

.product-cart-wrap:not(.small) .product-img-action-wrap > .product-action-1 .action-btn:after {
    background-color: #101828;
    color: #fff;
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 999px;
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.18);
}

.product-cart-wrap:not(.small) .product-img-action-wrap > .product-action-1 .action-btn:before {
    border-top-color: #101828;
}

.product-cart-wrap:not(.small) .product-badges.product-badges-position {
    left: 14px;
    top: 14px;
    margin: 0;
    z-index: 3;
}

.product-cart-wrap:not(.small) .product-badges.product-badges-position span.hot {
    padding: 0;
    background: #101828;
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.18);
}

.product-cart-wrap:not(.small) .product-badges.product-badges-position span.hot > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 0;
    color: #fff;
}

.product-cart-wrap:not(.small) .product-badges.product-badges-position span.hot > a::before {
    content: "\f13e";
    font-family: "uicons-regular-straight" !important;
    font-size: 15px;
    line-height: 1;
}

.product-cart-wrap:not(.small) .product-badges.product-badges-positionTwo {
    left: 14px;
    right: auto;
    bottom: 14px;
    top: auto;
    margin: 0;
}

.product-cart-wrap:not(.small) .product-badges.product-badges-positionTwo span {
    padding: 5px 8px;
    font-size: 10px;
    font-weight: 700;
    color: #101828;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.12);
}

.product-cart-wrap:not(.small) .product-content-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: end;
    gap: 7px 12px;
    padding: 16px 0 4px;
    background: transparent;
}

.product-cart-wrap:not(.small) .product-content-wrap .product-category,
.product-cart-wrap:not(.small) .product-content-wrap > span {
    display: none;
}

.product-cart-wrap:not(.small) .product-content-wrap h2 {
    grid-column: 1 / -1;
    margin: 0;
    min-height: 0.5em;
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.22;
}

.product-cart-wrap:not(.small) .product-content-wrap h2 a {
    color: #1d2430;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-cart-wrap:not(.small) .product-content-wrap .product-price,
.product-cart-wrap:not(.small) .product-content-wrap > .product-price .product-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 0;
    margin: 0;
}

.product-cart-wrap:not(.small) .product-content-wrap > .product-price {
    grid-column: 1 / -1;
    align-self: center;
}

.product-cart-wrap:not(.small) .product-content-wrap .product-price span {
    font-size: 1.02rem;
    font-weight: 600;
    color: #101828;
}

.product-cart-wrap:not(.small) .product-content-wrap .product-price span.old-price {
    font-size: 0.82rem;
    font-weight: 500;
    color: #7b8794;
    margin: 0;
}

@media only screen and (max-width: 991px) {
    .product-cart-wrap:not(.small) .product-img-action-wrap .product-img a {
        aspect-ratio: 1 / 1.08;
    }

    .product-cart-wrap:not(.small) .product-content-wrap {
        padding: 14px 0 4px;
    }

    .product-cart-wrap:not(.small) .product-content-wrap h2 {
        min-height: 2.45em;
        font-size: 0.92rem;
    }

    .product-cart-wrap:not(.small) .product-content-wrap .product-price span {
        font-size: 0.92rem;
    }
}

@media only screen and (max-width: 769px) {
    .product-cart-wrap:not(.small):hover {
        transform: none;
    }

    .product-cart-wrap:not(.small) .product-img-action-wrap > .product-action-1 {
        display: none;
    }

    .product-cart-wrap:not(.small) .product-img-action-wrap .product-img a {
        aspect-ratio: 1 / 1.1;
    }

    .product-cart-wrap:not(.small) .product-img-action-wrap .product-img a img.default-img,
    .product-cart-wrap:not(.small) .product-img-action-wrap .product-img a img.hover-img {
        transform: scale(1.1);
    }

    .product-cart-wrap:not(.small) .product-badges.product-badges-position span.hot > a {
        width: 32px;
        height: 32px;
    }

    .product-cart-wrap:not(.small) .product-badges.product-badges-position span.hot > a::before {
        font-size: 13px;
    }

    .product-cart-wrap:not(.small) .product-badges.product-badges-positionTwo span {
        font-size: 9px;
    }

    .product-grid-3 > [class*="col-"],
    .product-grid-4 > [class*="col-"],
    .related-products > [class*="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media only screen and (max-width: 575px) {
    .product-cart-wrap:not(.small) .product-img-action-wrap .product-img a {
        aspect-ratio: 1 / 1.12;
    }

    .product-cart-wrap:not(.small) .product-content-wrap {
        gap: 4px 8px;
        padding-top: 10px;
    }

    .product-cart-wrap:not(.small) .product-content-wrap h2 {
        min-height: 2.35em;
        font-size: 0.86rem;
        line-height: 1.2;
    }

    .product-cart-wrap:not(.small) .product-content-wrap .product-price span {
        font-size: 0.86rem;
    }

    .product-cart-wrap:not(.small) .product-content-wrap .product-price span.old-price {
        font-size: 0.72rem;
    }

}

/* Landing page responsive safety layer */
.vp-mega-menu {
    --vp-mega-left: 16px;
    --vp-mega-top: 100px;
    position: fixed;
    z-index: 1050;
    top: var(--vp-mega-top);
    right: auto;
    left: var(--vp-mega-left);
    display: grid;
    width: min(1080px, calc(100vw - 56px));
    grid-template-columns: minmax(320px, .82fr) minmax(560px, 1.5fr);
    overflow: hidden;
    border: 1px solid #e6ebef;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 26px 70px rgba(20, 36, 52, .15);
    opacity: 0;
    visibility: hidden;
    max-height: calc(100vh - var(--vp-mega-top) - 16px);
    overflow-x: hidden;
    overflow-y: auto;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.vp-mega-menu::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 18px;
}

.nav-item-group:hover .vp-mega-menu,
.nav-item-group:focus-within .vp-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.vp-mega-menu__categories,
.vp-mega-menu__products {
    min-width: 0;
    padding: 34px 36px 36px;
}

.vp-mega-menu__categories {
    border-right: 1px solid #e9eef1;
    background: #f4f7f8;
}

.vp-mega-menu__eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #73808d;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.vp-mega-menu__all {
    display: inline-flex;
    margin-bottom: 28px;
    align-items: center;
    gap: 7px;
    color: #1c2b39;
    font-size: 18px;
    font-weight: 750;
    text-decoration: none;
}

.vp-mega-menu__category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 28px;
}

.vp-mega-menu__category-title {
    display: block;
    color: #263746;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
}

.vp-mega-menu__subcategories {
    display: flex;
    margin-top: 7px;
    gap: 5px;
    flex-direction: column;
}

.vp-mega-menu__subcategory {
    color: #6b7884;
    font-size: 12.5px;
    line-height: 1.35;
    text-decoration: none;
}

.vp-mega-menu a:hover {
    color: #2b658a;
}

.vp-mega-menu__products-heading {
    display: flex;
    margin-bottom: 22px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.vp-mega-menu__products-heading > div {
    display: flex;
    gap: 3px;
    flex-direction: column;
}

.vp-mega-menu__products-heading small {
    color: #84909b;
    font-size: 9px;
    font-weight: 750;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.vp-mega-menu__products-heading span {
    color: #1d2c3a;
    font-size: 18px;
    font-weight: 750;
}

.vp-mega-menu__products-heading a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #62717f;
    font-size: 12px;
    font-weight: 650;
    text-decoration: none;
}

.vp-mega-menu__product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.vp-mega-product {
    display: flex;
    min-width: 0;
    color: #1f2d3a;
    text-decoration: none;
    flex-direction: column;
    transition: transform .22s ease;
}

.vp-mega-product:hover {
    transform: translateY(-3px);
}

.vp-mega-product__image {
    display: grid;
    aspect-ratio: 1 / .78;
    margin-bottom: 13px;
    overflow: hidden;
    place-items: center;
    border: 1px solid #edf0f1;
    border-radius: 8px;
    background: #f7f8f7;
}

.vp-mega-product__image img {
    width: 100%;
    height: 100%;
    padding: 9px;
    object-fit: contain;
    transition: transform .25s ease;
}

.vp-mega-product:hover .vp-mega-product__image img {
    transform: scale(1.04);
}

.vp-mega-product strong {
    overflow: hidden;
    color: #253442;
    font-size: 13px;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vp-mega-product__price {
    margin-top: 6px;
    color: #2b658a !important;
    font-size: 12px !important;
    font-weight: 700;
}

.vp-mega-menu__empty {
    margin: 36px 0;
    color: #788591;
    font-size: 13px;
}

.submenu-item--nested {
    padding-left: 32px !important;
    color: #778491 !important;
    font-size: 12px !important;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .vp-mega-menu {
        width: calc(100vw - 32px);
        grid-template-columns: minmax(270px, .72fr) minmax(0, 1.28fr);
    }

    .vp-mega-menu__categories,
    .vp-mega-menu__products {
        padding: 26px;
    }

    .vp-mega-menu__product-grid {
        gap: 12px;
    }

    .vp-mega-menu__category-grid {
        gap: 18px;
    }
}

.homepage-product-carousel .slick-track {
    display: flex;
}

.homepage-product-carousel .slick-slide,
.homepage-product-carousel .slick-slide > div,
.homepage-product-carousel .homepage-product-slide,
.homepage-product-carousel .product-cart-wrap {
    height: 100%;
}

.homepage-product-carousel .product-content-wrap h2 {
    min-height: 2.45em !important;
}

.vp-mobile-dock {
    display: none;
}

.main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
}

.main img,
.main svg {
    max-width: 100%;
}

.hero-carousel-section .hero-caption {
    padding-inline: clamp(44px, 7vw, 96px);
}

.hero-carousel-section .hero-caption .container {
    width: 100%;
}

.hero-carousel-section .hero-title,
.eyewear-vibe-band__title,
.daily-wear-showcase__title,
.homepage-product-title {
    overflow-wrap: anywhere;
    text-wrap: balance;
}

.hero-carousel-section .carousel-control-prev,
.hero-carousel-section .carousel-control-next {
    width: clamp(42px, 6vw, 72px);
    min-height: 44px;
}

.hero-carousel-section .carousel-control-prev-icon,
.hero-carousel-section .carousel-control-next-icon {
    width: clamp(20px, 2.6vw, 30px);
    height: clamp(20px, 2.6vw, 30px);
}

.hero-carousel-section .carousel-indicators [data-bs-target] {
    min-width: 22px;
    min-height: 4px;
    margin-inline: 4px;
    border-radius: 999px;
}

.homepage-product-carousel .product-action-1 .action-btn,
.daily-wear-card__cta i,
.homepage-product-link i {
    flex: 0 0 auto;
}

.homepage-product-carousel .product-category,
.homepage-product-carousel .product-category a,
.homepage-product-carousel .product-content-wrap h2,
.homepage-product-carousel .product-content-wrap h2 a {
    min-width: 0;
    overflow-wrap: anywhere;
}

.homepage-product-carousel .product-badges span,
.homepage-product-carousel .product-badges a {
    white-space: normal;
    line-height: 1.2;
}

@media (max-width: 991px) {
    .vp-mobile-dock {
        position: fixed;
        z-index: 1045;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid !important;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        min-height: calc(62px + env(safe-area-inset-bottom));
        padding: 7px 8px max(7px, env(safe-area-inset-bottom));
        border-top: 1px solid rgba(20, 36, 52, .1);
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 -8px 24px rgba(19, 37, 55, .08);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .vp-mobile-dock__item {
        display: flex;
        min-width: 0;
        padding: 3px 2px;
        align-items: center;
        justify-content: center;
        gap: 3px;
        border: 0;
        background: transparent;
        color: #657182;
        font: inherit;
        text-decoration: none;
        flex-direction: column;
    }

    .vp-mobile-dock__item i {
        color: inherit;
        font-size: 19px;
        line-height: 1;
    }

    .vp-mobile-dock__item > span:last-child {
        overflow: hidden;
        max-width: 100%;
        font-size: 10px;
        font-weight: 650;
        line-height: 1.1;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .vp-mobile-dock__item.is-active,
    .vp-mobile-dock__item:focus-visible {
        color: #2b658a;
    }

    .vp-mobile-dock__cart-icon {
        position: relative;
        display: inline-flex;
    }

    .vp-mobile-dock__cart-icon .cart-count {
        position: absolute;
        top: -7px;
        right: -10px;
        display: grid;
        min-width: 15px;
        height: 15px;
        padding-inline: 3px;
        place-items: center;
        border: 2px solid #fff;
        border-radius: 99px;
        background: #2b658a;
        color: #fff;
        font-size: 8px;
        line-height: 1;
    }

    .hero-carousel-section .hero-title {
        font-size: clamp(1.55rem, 5vw, 2.45rem) !important;
        line-height: 1.08;
    }

    .hero-carousel-section .hero-heading {
        font-size: clamp(.72rem, 2vw, .9rem);
    }

    .eyewear-vibe-band__title {
        font-size: clamp(1.65rem, 4.5vw, 2.2rem) !important;
        line-height: 1.08 !important;
    }

    .daily-wear-showcase__title {
        font-size: clamp(2rem, 7vw, 3rem) !important;
        line-height: 1.05;
    }

    .homepage-product-title {
        font-size: clamp(1.35rem, 4.5vw, 2rem) !important;
        line-height: 1.15;
    }

    .homepage-product-carousel-arrows .slider-btn,
    .daily-wear-showcase__arrows .slider-btn {
        display: inline-grid !important;
        place-items: center;
        width: 44px !important;
        height: 44px !important;
        min-width: 44px;
        padding: 0 !important;
        line-height: 1 !important;
        font-size: 18px !important;
        border-radius: 50%;
    }
}

@media (max-width: 767px) {
    .hero-carousel-section .hero-caption {
        align-items: flex-end;
        padding: 24px 42px max(42px, env(safe-area-inset-bottom));
    }

    .hero-carousel-section .hero-caption .container {
        padding-inline: 0;
    }

    .hero-carousel-section .hero-cta {
        min-height: 42px;
        max-width: 100%;
        white-space: normal;
    }

    .eyewear-vibe-band__pill {
        white-space: normal !important;
        line-height: 1.2 !important;
    }

    .eyewear-vibe-band__title {
        max-width: 16ch !important;
        font-size: clamp(1.45rem, 6.8vw, 1.8rem) !important;
        line-height: 1.08 !important;
    }

    .eyewear-vibe-band__actions {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        width: 100%;
        max-width: 360px !important;
        gap: 9px !important;
    }

    .eyewear-vibe-band__actions .eyewear-vibe-band__pill,
    .eyewear-vibe-band__actions .eyewear-vibe-band__pill--primary {
        grid-column: auto !important;
        width: 100%;
        min-width: 0;
        min-height: 42px !important;
        padding-inline: 10px !important;
        font-size: 12px !important;
    }

    .daily-wear-showcase__header,
    .homepage-product-header {
        min-width: 0;
    }

    .daily-wear-showcase__copy,
    .homepage-product-copy {
        width: 100%;
        min-width: 0;
    }

    .daily-wear-card__media img,
    .homepage-product-carousel .product-img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .homepage-product-carousel .product-img-action-wrap > .product-action-1 {
        gap: 6px;
    }

    .homepage-product-carousel .product-img-action-wrap > .product-action-1 .action-btn {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px;
        display: inline-grid;
        place-items: center;
    }

    .homepage-product-carousel .product-img-action-wrap > .product-action-1 .action-btn i {
        font-size: 17px !important;
        line-height: 1;
    }
}

@media (max-width: 991.98px) {
    .product-cart-wrap:not(.small) .product-badges.product-badges-position span.hot > .vp-tryon-action {
        width: 27px !important;
        min-width: 27px !important;
        height: 27px !important;
        padding: 0 !important;
        gap: 0 !important;
        border-radius: 50% !important;
    }

    .product-cart-wrap .vp-tryon-action span {
        position: absolute !important;
        width: 1px !important;
        height: 1px !important;
        padding: 0 !important;
        overflow: hidden !important;
        clip: rect(0, 0, 0, 0) !important;
        white-space: nowrap !important;
    }
}

/* Unified minimal product-card actions */
.product-cart-wrap {
    --vp-action-accent: #2c7099;
    --vp-action-ink: #2b4258;
    --vp-action-surface: rgba(252, 253, 254, .94);
    --vp-action-hover: #edf5f9;
    --vp-action-border: rgba(44, 112, 153, .2);
}

.product-cart-wrap .product-img-action-wrap > .product-action-1 {
    gap: 7px;
}

.product-cart-wrap .product-img-action-wrap > .product-action-1 .action-btn {
    display: inline-grid;
    width: 38px;
    height: 38px;
    min-width: 38px;
    padding: 0;
    place-items: center;
    overflow: visible;
    border: 1px solid var(--vp-action-border) !important;
    border-radius: 50% !important;
    background: var(--vp-action-surface) !important;
    color: var(--vp-action-ink) !important;
    box-shadow: 0 7px 18px rgba(26, 48, 69, .09) !important;
    line-height: 1 !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.product-cart-wrap .product-img-action-wrap > .product-action-1 .action-btn i {
    color: inherit !important;
    font-size: 15px;
    line-height: 1;
}

.product-cart-wrap .product-img-action-wrap > .product-action-1 .action-btn:hover,
.product-cart-wrap .product-img-action-wrap > .product-action-1 .action-btn:focus-visible {
    border-color: rgba(44, 112, 153, .48) !important;
    background: var(--vp-action-hover) !important;
    color: var(--vp-action-accent) !important;
    box-shadow: 0 9px 20px rgba(37, 91, 126, .14) !important;
    transform: translateY(-2px);
}

.product-cart-wrap .product-img-action-wrap > .product-action-1 .action-btn:focus-visible,
.product-cart-wrap .vp-tryon-action:focus-visible {
    outline: 3px solid rgba(44, 112, 153, .22);
    outline-offset: 2px;
}

.product-cart-wrap .product-img-action-wrap > .product-action-1 .action-btn::after {
    border-radius: 7px;
    background: #20364b;
    color: #fff;
    box-shadow: 0 7px 16px rgba(19, 36, 52, .16);
    font-size: 10px;
    font-weight: 650;
    letter-spacing: .01em;
}

.product-cart-wrap .product-img-action-wrap > .product-action-1 .action-btn::before {
    border-top-color: #20364b;
}

.product-cart-wrap:not(.small) .product-badges.product-badges-position span.hot {
    overflow: visible;
    border: 0;
    border-radius: 999px;
    background: transparent !important;
    box-shadow: none !important;
}

.product-cart-wrap:not(.small) .product-badges.product-badges-position span.hot > .vp-tryon-action {
    display: inline-flex;
    width: auto;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid rgba(44, 112, 153, .28);
    border-radius: 999px;
    background: rgba(239, 247, 251, .95);
    color: #285f83;
    box-shadow: 0 7px 18px rgba(35, 86, 119, .1);
    font-size: 11px;
    font-weight: 750;
    line-height: 1;
    letter-spacing: .02em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.product-cart-wrap:not(.small) .product-badges.product-badges-position span.hot > .vp-tryon-action::before {
    display: none !important;
    content: none !important;
}

.product-cart-wrap .vp-tryon-action i {
    color: currentColor;
    font-size: 16px;
    line-height: 1;
}

.product-cart-wrap:not(.small) .product-badges.product-badges-position span.hot > .vp-tryon-action:hover,
.product-cart-wrap:not(.small) .product-badges.product-badges-position span.hot > .vp-tryon-action:focus-visible {
    border-color: rgba(75, 56, 238, .26) !important;
    background: rgba(244, 242, 255, .98) !important;
    color: #3f32c5 !important;
    box-shadow: 0 7px 18px rgba(75, 56, 238, .12) !important;
    transform: none;
}

.product-cart-wrap .vp-tryon-action:hover span,
.product-cart-wrap .vp-tryon-action:focus-visible span,
.product-cart-wrap .vp-tryon-action:hover i,
.product-cart-wrap .vp-tryon-action:focus-visible i {
    color: currentColor !important;
}

@media (max-width: 479px) {
    .product-cart-wrap:not(.small) .product-badges.product-badges-position span.hot > .vp-tryon-action {
        width: 38px;
        padding: 0;
    }

    .product-cart-wrap .vp-tryon-action span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
    }
}

@media (hover: none) {
    .product-cart-wrap .product-img-action-wrap > .product-action-1 {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
}

@media (max-width: 479px) {
    .hero-carousel-section .hero-caption {
        padding-inline: 36px;
    }

    .hero-carousel-section .hero-title {
        font-size: clamp(1.2rem, 7vw, 1.65rem) !important;
    }

    .hero-carousel-section .hero-heading {
        max-width: 28ch;
        margin-inline: auto;
    }

    .eyewear-vibe-band__actions {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        max-width: 360px !important;
    }

    .eyewear-vibe-band__actions .eyewear-vibe-band__pill {
        grid-column: auto !important;
        min-width: 0;
        min-height: 42px;
        padding-inline: 8px;
        font-size: 11.5px;
    }

    .eyewear-vibe-band__actions .eyewear-vibe-band__pill--primary {
        grid-column: auto !important;
    }

    .daily-wear-showcase__actions,
    .homepage-product-header-actions {
        gap: 10px;
        flex-wrap: wrap;
    }

    .daily-wear-card__title {
        font-size: clamp(1.1rem, 6vw, 1.45rem);
        overflow-wrap: anywhere;
    }
}

@media (max-width: 359px) {
    .hero-carousel-section .hero-caption {
        padding-inline: 30px;
        padding-bottom: 34px;
    }

    .eyewear-vibe-band__actions {
        grid-template-columns: 1fr !important;
    }

    .eyewear-vibe-band__actions .eyewear-vibe-band__pill--primary {
        grid-column: auto !important;
    }
}

/* Landing product cards: larger imagery without an outer frame */
.homepage-product-carousel .product-img-action-wrap .product-img {
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.homepage-product-carousel .product-img-action-wrap .product-img a::after {
    display: none;
}

.homepage-product-carousel .product-img-action-wrap .product-img a img,
.homepage-product-carousel .product-img-action-wrap .product-img a img.default-img,
.homepage-product-carousel .product-img-action-wrap .product-img a img.hover-img {
    padding: 0;
    transform: scale(1.2);
}

.homepage-product-carousel .product-cart-wrap:hover .product-img-action-wrap .product-img a img.default-img,
.homepage-product-carousel .product-cart-wrap:hover .product-img-action-wrap .product-img a img.hover-img {
    transform: scale(1.24);
}

/* Compact product Try On control across catalogue and homepage cards */
.product-cart-wrap:not(.small) .product-badges.product-badges-position span.hot > .vp-tryon-action {
    width: auto !important;
    min-width: 0 !important;
    height: 30px !important;
    padding: 0 9px !important;
    gap: 5px !important;
    font-size: 9px !important;
    white-space: nowrap;
}

.product-cart-wrap .vp-tryon-action i {
    font-size: 13px !important;
}

@media (max-width: 767px) {
    .product-cart-wrap:not(.small) .product-badges.product-badges-position span.hot > .vp-tryon-action {
        height: 26px !important;
        padding: 0 7px !important;
        gap: 4px !important;
        font-size: 8px !important;
    }

    .product-cart-wrap .vp-tryon-action i {
        font-size: 11px !important;
    }
}

/* Refined global scroll-to-top control. */
#scrollUp {
    width: 52px !important;
    height: 52px !important;
    right: 24px !important;
    bottom: 26px !important;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .42) !important;
    border-radius: 999px !important;
    background: rgba(27, 29, 35, .68) !important;
    color: #fff !important;
    box-shadow: 0 8px 24px rgba(17, 18, 26, .18) !important;
    line-height: 1 !important;
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease !important;
}

#scrollUp .vp-scroll-top-icon {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: currentColor !important;
}

#scrollUp .vp-scroll-top-icon svg {
    display: block;
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#scrollUp:hover,
#scrollUp:focus-visible {
    border-color: rgba(255, 255, 255, .62) !important;
    background: rgba(17, 18, 22, .88) !important;
    color: #fff !important;
    box-shadow: 0 10px 28px rgba(17, 18, 26, .24) !important;
    transform: none !important;
}

#scrollUp:focus-visible {
    outline: 3px solid rgba(75, 56, 238, .2);
    outline-offset: 3px;
}

@media (max-width: 767px) {
    #scrollUp {
        width: 46px !important;
        height: 46px !important;
        right: 14px !important;
        bottom: 18px !important;
    }

    #scrollUp .vp-scroll-top-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Vision Plus landing discovery experience */
.vp-discovery,
.vp-order-guide {
    padding: clamp(54px, 7vw, 96px) 20px;
    background: #f8f9fb;
}

.vp-discovery__shell,
.vp-order-guide__shell,
.vp-experience__shell,
.vp-trust-strip__shell {
    width: min(100%, 1440px);
    margin-inline: auto;
}

.vp-section-heading {
    max-width: 720px;
    margin: 0 auto clamp(30px, 4vw, 52px);
    text-align: center;
}

.vp-section-heading__eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: #5f6f82;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.vp-section-heading h2,
.vp-experience__content h2 {
    margin: 0;
    color: #172238;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 750;
    line-height: 1.05;
    letter-spacing: -.035em;
    text-wrap: balance;
}

.vp-section-heading p,
.vp-experience__content > p {
    max-width: 620px;
    margin: 16px auto 0;
    color: #667386;
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 1.65;
}

.vp-shape-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: clamp(10px, 1.4vw, 20px);
}

.vp-shape-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 205px;
    padding: 30px 16px 22px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    border: 1px solid #e5e8ee;
    border-radius: 20px;
    background: #fff;
    color: #172238;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 12px 36px rgba(23, 34, 56, .045);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.vp-shape-card:hover,
.vp-shape-card:focus-visible {
    color: #172238;
    border-color: #aeb8c6;
    box-shadow: 0 18px 42px rgba(23, 34, 56, .11);
    transform: translateY(-5px);
}

.vp-shape-card:focus-visible,
.vp-button:focus-visible,
.vp-experience__link:focus-visible {
    outline: 3px solid rgba(24, 91, 164, .3);
    outline-offset: 3px;
}

.vp-shape-card__art {
    position: absolute;
    top: 42px;
    left: 50%;
    display: flex;
    align-items: center;
    transform: translateX(-50%);
    color: #22304a;
}

.vp-shape-card__lens {
    display: block;
    width: 54px;
    height: 42px;
    border: 3px solid currentColor;
    background: linear-gradient(145deg, rgba(158, 190, 222, .2), rgba(236, 244, 249, .55));
}

.vp-shape-card__bridge {
    width: 15px;
    height: 8px;
    margin-inline: -1px;
    border-top: 3px solid currentColor;
}

.vp-shape-card__art::before,
.vp-shape-card__art::after {
    content: "";
    position: absolute;
    top: 8px;
    width: 22px;
    border-top: 3px solid currentColor;
}

.vp-shape-card__art::before { right: 100%; transform: rotate(7deg); transform-origin: right; }
.vp-shape-card__art::after { left: 100%; transform: rotate(-7deg); transform-origin: left; }
.vp-shape-card__art--round .vp-shape-card__lens { width: 48px; height: 48px; border-radius: 50%; }
.vp-shape-card__art--square .vp-shape-card__lens { border-radius: 9px; }
.vp-shape-card__art--rectangle .vp-shape-card__lens { width: 58px; height: 34px; border-radius: 8px; }
.vp-shape-card__art--oval .vp-shape-card__lens { width: 55px; height: 39px; border-radius: 50%; }
.vp-shape-card__art--aviator .vp-shape-card__lens { width: 52px; height: 48px; border-radius: 58% 58% 65% 65% / 38% 38% 78% 78%; }
.vp-shape-card__art--cat-eye .vp-shape-card__lens { width: 54px; height: 42px; border-radius: 62% 18% 58% 35%; transform: skewY(-6deg); }
.vp-shape-card__art--cat-eye .vp-shape-card__lens:last-child { border-radius: 18% 62% 35% 58%; transform: skewY(6deg); }

.vp-shape-card__name {
    font-size: 17px;
    font-weight: 750;
}

.vp-shape-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    color: #738095;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.vp-experience {
    padding: clamp(28px, 4vw, 58px) 20px;
    background: #fff;
}

.vp-experience__shell {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
    min-height: 430px;
    overflow: hidden;
    border-radius: clamp(22px, 3vw, 38px);
    background: linear-gradient(135deg, #13233d 0%, #1d4167 58%, #227997 100%);
    box-shadow: 0 28px 70px rgba(18, 39, 66, .16);
}

.vp-experience__content {
    align-self: center;
    padding: clamp(38px, 6vw, 88px);
}

.vp-experience__content .vp-section-heading__eyebrow,
.vp-experience__content h2,
.vp-experience__content > p { color: #fff; }
.vp-experience__content > p { margin-left: 0; opacity: .78; }

.vp-experience__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.vp-button {
    display: inline-flex;
    min-height: 50px;
    padding: 12px 23px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.vp-button:hover { transform: translateY(-2px); }
.vp-button--light { background: #fff; color: #172238; box-shadow: 0 10px 28px rgba(0, 0, 0, .13); }
.vp-button--light:hover { color: #172238; box-shadow: 0 14px 32px rgba(0, 0, 0, .18); }
.vp-button--dark { background: #172238; color: #fff; }
.vp-button--dark:hover { background: #255b87; color: #fff; }
.vp-experience__link { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 5px; }
.vp-experience__link:hover { color: #d7f2ff; }

.vp-experience__visual {
    position: relative;
    display: grid;
    min-height: 350px;
    place-items: center;
    overflow: hidden;
}

.vp-experience__orb {
    position: absolute;
    width: min(34vw, 430px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.95), rgba(183,231,244,.76) 38%, rgba(75,156,185,.2) 72%);
    box-shadow: inset 0 0 50px rgba(255,255,255,.6), 0 30px 80px rgba(3,20,38,.25);
}

.vp-experience__glasses {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    filter: drop-shadow(0 18px 18px rgba(4,22,38,.25));
    transform: rotate(-5deg);
}

.vp-experience__glasses span { width: clamp(92px, 11vw, 148px); height: clamp(70px, 8vw, 105px); border: clamp(7px, .7vw, 10px) solid #13233d; border-radius: 48% 48% 44% 44%; background: rgba(224,246,251,.28); }
.vp-experience__glasses i { width: clamp(26px, 3vw, 44px); border-top: 8px solid #13233d; }
.vp-experience__badge { position: absolute; right: 11%; bottom: 13%; z-index: 2; padding: 10px 16px; border: 1px solid rgba(255,255,255,.45); border-radius: 999px; background: rgba(12,36,58,.65); color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(8px); }

.vp-order-guide { background: #fff; }
.vp-order-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; counter-reset: order-step; }
.vp-order-step { position: relative; min-height: 260px; padding: clamp(28px, 3vw, 42px); overflow: hidden; border: 1px solid #e5e8ee; border-radius: 24px; background: #fafbfc; }
.vp-order-step__number { position: absolute; top: 22px; right: 24px; color: #dce2e9; font-size: 42px; font-weight: 800; line-height: 1; }
.vp-order-step > i { display: grid; width: 54px; height: 54px; margin-bottom: 30px; place-items: center; border-radius: 16px; background: #e9f2f8; color: #245b87; font-size: 25px; }
.vp-order-step h3 { margin: 0 0 10px; color: #172238; font-size: 20px; font-weight: 750; }
.vp-order-step p { margin: 0; color: #687589; font-size: 14px; line-height: 1.7; }
.vp-order-guide__action { margin-top: 34px; text-align: center; }

.vp-trust-strip { padding: 30px 20px; border-block: 1px solid #e8ebf0; background: #f7f9fb; }
.vp-trust-strip__shell { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.vp-trust-item { display: flex; min-width: 0; padding: 10px clamp(16px, 2.5vw, 36px); align-items: center; justify-content: center; gap: 14px; border-right: 1px solid #dfe4ea; }
.vp-trust-item:last-child { border-right: 0; }
.vp-trust-item > i { flex: 0 0 auto; color: #245b87; font-size: 25px; }
.vp-trust-item span { display: flex; min-width: 0; flex-direction: column; }
.vp-trust-item strong { color: #172238; font-size: 14px; line-height: 1.3; }
.vp-trust-item small { margin-top: 3px; color: #748095; font-size: 11px; line-height: 1.4; }

@media (max-width: 1199px) {
    .vp-shape-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .vp-shape-card { min-height: 190px; }
    .vp-trust-strip__shell { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; }
    .vp-trust-item:nth-child(2) { border-right: 0; }
    .vp-trust-item:nth-child(-n+2) { border-bottom: 1px solid #dfe4ea; }
}

@media (max-width: 767px) {
    .vp-discovery, .vp-order-guide { padding-inline: 16px; }
    .vp-shape-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .vp-shape-card { min-height: 166px; padding: 24px 10px 16px; border-radius: 16px; }
    .vp-shape-card__art { top: 32px; transform: translateX(-50%) scale(.8); }
    .vp-shape-card__name { font-size: 15px; }
    .vp-experience { padding-inline: 14px; }
    .vp-experience__shell { grid-template-columns: 1fr; }
    .vp-experience__content { padding: 40px 25px 28px; text-align: center; }
    .vp-experience__content > p { margin-inline: auto; }
    .vp-experience__actions { justify-content: center; }
    .vp-experience__visual { min-height: 280px; }
    .vp-experience__orb { width: min(82vw, 340px); }
    .vp-experience__glasses span { width: 100px; height: 74px; border-width: 7px; }
    .vp-experience__glasses i { width: 27px; border-width: 6px; }
    .vp-order-steps { grid-template-columns: 1fr; }
    .vp-order-step { min-height: 0; }
    .vp-trust-strip { padding: 16px 10px; }
    .vp-trust-strip__shell { grid-template-columns: repeat(2, minmax(0, 1fr)); padding-inline: 0 !important; }
    .vp-trust-item { min-height: 104px; padding: 14px 8px; justify-content: center; gap: 9px; text-align: center; flex-direction: column; }
    .vp-trust-item:nth-child(odd) { border-right: 1px solid #dfe4ea; }
    .vp-trust-item:nth-child(even) { border-right: 0; }
    .vp-trust-item:nth-child(-n+2) { border-bottom: 1px solid #dfe4ea; }
    .vp-trust-item:nth-child(n+3) { border-bottom: 0; }
    .vp-trust-item > i { font-size: 22px; }
    .vp-trust-item strong { font-size: 12px; }
    .vp-trust-item small { font-size: 9.5px; }
}

@media (max-width: 380px) {
    .vp-shape-card__art { transform: translateX(-50%) scale(.68); }
    .vp-button { width: 100%; }
    .vp-experience__link { width: 100%; text-align: center; }
}

/* Professional Vision Plus footer */
.vp-insights {
    padding: clamp(52px, 5.5vw, 76px) 0 clamp(52px, 5.5vw, 76px);
    background: #edf3f5;
}

.vp-insights__shell {
    width: min(100%, var(--vp-home-max));
    padding-inline: var(--vp-home-gutter);
    margin-inline: auto;
}

.vp-insights__track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(14px, 1.5vw, 22px);
}

.vp-insights .vp-section-heading {
    max-width: 900px;
    margin: 0 auto clamp(30px, 3.5vw, 46px);
    text-align: center;
}

.vp-insights .vp-section-heading h2 {
    margin-bottom: 12px;
    color: #252529;
    font-size: clamp(30px, 3vw, 46px);
    font-weight: 750;
    letter-spacing: -.035em;
}

.vp-insights .vp-section-heading p {
    max-width: none;
    margin: 0;
    color: #33343b;
    font-size: clamp(14px, 1.25vw, 18px);
    line-height: 1.55;
}

.vp-insight-slide {
    min-width: 0;
}

.vp-insight-card {
    display: flex;
    height: 100%;
    min-width: 0;
    overflow: hidden;
    padding: clamp(18px, 1.6vw, 24px);
    flex-direction: column;
    border: 1px solid rgba(31, 59, 75, .08);
    border-radius: 18px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 8px 26px rgba(24, 48, 61, .045);
    color: #172238;
    text-decoration: none;
    transition: transform .25s ease, border-color .25s ease, background-color .25s ease, box-shadow .25s ease;
}

.vp-insight-card:hover,
.vp-insight-card:focus-visible {
    border-color: rgba(43, 101, 138, .22);
    background: #fff;
    box-shadow: 0 16px 38px rgba(24, 48, 61, .11);
    transform: translateY(-5px);
}

.vp-insight-card__icon {
    display: grid;
    width: clamp(88px, 8vw, 112px);
    aspect-ratio: 1;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 7px 20px rgba(24, 48, 61, .07);
    color: #171719;
    transition: color .25s ease, transform .25s ease;
}

.vp-insight-card__icon svg {
    width: 38%;
    height: auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .3s ease;
}

.vp-insight-card:hover .vp-insight-card__icon,
.vp-insight-card:focus-visible .vp-insight-card__icon {
    color: #2b658a;
    transform: translateY(-3px);
}

.vp-insight-card:hover .vp-insight-card__icon svg,
.vp-insight-card:focus-visible .vp-insight-card__icon svg {
    transform: translateY(-3px);
}

.vp-insight-card:focus-visible {
    outline: 3px solid rgba(44, 112, 153, .22);
    outline-offset: 5px;
}

.vp-insight-card__body {
    display: flex;
    padding: clamp(20px, 1.8vw, 26px) 0 0;
    flex: 1;
    align-items: flex-start;
    flex-direction: column;
}

.vp-insight-card__body strong {
    color: #292a2f;
    font-size: clamp(18px, 1.45vw, 22px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.018em;
}

.vp-insight-card__copy {
    margin-top: 10px;
    color: #3f4048;
    font-size: clamp(13px, 1vw, 16px);
    line-height: 1.55;
}

.vp-insight-card__link {
    display: inline-flex;
    min-width: 154px;
    min-height: 52px;
    margin-top: 22px;
    padding: 10px 22px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: 1px solid #2d2e34;
    border-radius: 999px;
    color: #292a2f;
    font-size: 15px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0;
    transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}

.vp-insight-card:hover .vp-insight-card__link {
    border-color: #2b658a;
    background: #2b658a;
    color: #fff;
}

.vp-insight-card__link i {
    transition: transform .2s ease;
}

.vp-insight-card:hover .vp-insight-card__link i {
    transform: translateX(3px);
}

.vp-insights__nav {
    display: none;
}

@media (max-width: 991px) {
    .vp-insights {
        padding-top: 0;
        overflow: hidden;
        background: #fff;
    }

    .vp-insights .vp-section-heading {
        width: auto;
        max-width: none;
        margin: 0 0 42px;
        padding: 54px 0 46px;
        background: #fff;
        box-shadow: 0 0 0 100vmax #fff;
        clip-path: inset(0 -100vmax);
    }

    .vp-insights__track {
        display: block;
        margin-inline: -10px;
    }

    .vp-insights__track .slick-list {
        overflow: hidden;
    }

    .vp-insights__track .slick-slide {
        height: auto;
        padding-inline: 10px;
    }

    .vp-insights__track .slick-track {
        display: flex;
    }

    .vp-insights__track .slick-slide > div,
    .vp-insights__track .vp-insight-slide,
    .vp-insights__track .vp-insight-card {
        height: 100%;
    }

    .vp-insight-card {
        overflow: hidden;
        padding: 22px;
        border: 1px solid rgba(31, 59, 75, .06);
        border-radius: 12px;
        background: #edf3f5;
        box-shadow: 0 8px 24px rgba(24, 48, 61, .06);
    }

    .vp-insight-card__icon {
        margin-inline: auto;
        background: #fff;
    }

    .vp-insight-card__body {
        padding: 24px 2px 2px;
    }

    .vp-insights__nav {
        display: flex;
        margin-top: 22px;
        justify-content: flex-end;
        gap: 8px;
    }

    .vp-insights__arrow {
        display: grid;
        width: 42px;
        height: 42px;
        padding: 0;
        place-items: center;
        border: 1px solid rgba(44, 112, 153, .2);
        border-radius: 50%;
        background: #fff;
        color: #2b5877;
    }

    .vp-insights__arrow:hover:not(.slick-disabled) {
        border-color: rgba(44, 112, 153, .46);
        background: #f6fafb;
    }

    .vp-insights__arrow.slick-disabled {
        opacity: .35;
        cursor: default;
    }

    .vp-insights__track .slick-dots {
        display: flex;
        margin: 22px 0 0;
        justify-content: center;
        gap: 7px;
    }

    .vp-insights__track .slick-dots li {
        width: auto;
        height: auto;
        margin: 0;
    }

    .vp-insights__track .slick-dots button {
        width: 7px;
        height: 7px;
        padding: 0;
        border: 0;
        border-radius: 99px;
        background: #b9c8ce;
        font-size: 0;
        transition: width .2s ease, background-color .2s ease;
    }

    .vp-insights__track .slick-dots .slick-active button {
        width: 24px;
        background: #447e9f;
    }
}

@media (max-width: 639px) {
    .vp-insights {
        overflow: hidden;
    }

    .vp-insights__track .slick-list {
        overflow: visible;
    }

    .vp-insight-card__body {
        padding-top: 16px;
    }

    .vp-insights .vp-section-heading {
        margin-bottom: 30px;
        padding: 46px 0 38px;
    }

    .vp-insights .vp-section-heading p {
        max-width: 440px;
        margin-inline: auto;
    }

    .vp-insight-card {
        padding: 18px;
    }

    .vp-insight-card__icon {
        width: 96px;
    }

    .vp-insight-card__body strong {
        font-size: 18px;
    }
}

/* Mobile/tablet section CTA, inspired by clean editorial eyewear storefronts. */
.vp-mobile-view-all-wrap { display: none; }

@media (max-width: 991.98px) {
    .homepage-product-header-actions { display: none !important; }

    .vp-mobile-view-all-wrap {
        display: flex;
        width: 100%;
        margin-top: 28px;
        justify-content: center;
    }

    .vp-mobile-view-all {
        display: inline-flex;
        min-width: 164px;
        min-height: 46px;
        padding: 11px 24px;
        align-items: center;
        justify-content: center;
        gap: 18px;
        border: 1px solid #161616;
        border-radius: 999px;
        background: #fff;
        color: #161616;
        font-size: 13px;
        font-weight: 750;
        line-height: 1;
        letter-spacing: .03em;
        text-decoration: none;
        text-transform: uppercase;
    }

    .vp-mobile-view-all span { font-size: 18px; line-height: 1; transition: transform .2s ease; }
    .vp-mobile-view-all:active { background: #161616; color: #fff; }

    /* Insight cards keep their content and optical symbols left aligned. */
    .vp-insight-card { text-align: left !important; }
    .vp-insight-card__icon { margin-inline: 0 !important; }
    .vp-insight-card__body { align-items: flex-start !important; text-align: left !important; }

    /* Daily Wear stays in its original visual style, with a stable two-column grid. */
    .daily-wear-showcase__track,
    .daily-wear-showcase__track:not(.slick-initialized) {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }
    .daily-wear-showcase__actions,
    .daily-wear-showcase__arrows,
    .daily-wear-showcase__track .slick-dots { display: none !important; }
    .daily-wear-card {
        position: relative !important;
        display: block !important;
        overflow: hidden !important;
        border: 0 !important;
        border-radius: 10px !important;
        background: #26333c !important;
        box-shadow: none !important;
        transform: none !important;
    }
    .daily-wear-card__media {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 3 / 4 !important;
        overflow: hidden !important;
    }
    .daily-wear-card__media::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 42%, rgba(8, 15, 20, .18) 62%, rgba(8, 15, 20, .82) 100%);
        pointer-events: none;
    }
    .daily-wear-card__media img {
        width: 100% !important;
        height: 100% !important;
        padding: 0 !important;
        object-fit: cover !important;
        object-position: center !important;
        transform: none !important;
    }
    .daily-wear-card__content {
        position: absolute !important;
        z-index: 2;
        right: 0;
        bottom: 0;
        left: 0;
        min-height: 0 !important;
        padding: clamp(14px, 2.4vw, 24px) !important;
        background: transparent !important;
        color: #fff !important;
        text-align: left !important;
    }
    .daily-wear-card__title {
        margin: 0 !important;
        color: #fff !important;
        font-size: clamp(15px, 2.2vw, 22px) !important;
        font-weight: 750 !important;
        line-height: 1.2 !important;
        text-shadow: 0 1px 10px rgba(0, 0, 0, .18);
    }
    .daily-wear-card__description {
        display: -webkit-box !important;
        margin: 7px 0 0 !important;
        overflow: hidden;
        color: rgba(255, 255, 255, .84) !important;
        font-size: clamp(10px, 1.4vw, 13px) !important;
        line-height: 1.42 !important;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
    .daily-wear-card__cta {
        display: inline-flex !important;
        margin-top: 10px;
        align-items: center;
        gap: 4px;
        color: #fff !important;
        font-size: 10px;
        font-weight: 750;
        letter-spacing: .04em;
        text-transform: uppercase;
    }
    .daily-wear-card__cta i { display: inline-block; vertical-align: middle; line-height: 1; }
}

@media (max-width: 639px) {
    .vp-mobile-view-all-wrap { margin-top: 24px; }
    .vp-mobile-view-all { min-width: 152px; min-height: 44px; }
    .vp-insight-card__icon { width: 82px; }
}

@media (min-width: 1000px) {
    .daily-wear-showcase__actions { display: flex !important; }
    .daily-wear-showcase__track.slick-initialized .slick-list { overflow: hidden !important; }
    .daily-wear-showcase__track.slick-initialized .slick-slide { padding-inline: 4px; }
}

/* Homepage lens comparison and recommended shopping sections */
.vp-lens-compare,
.vp-home-recommendations { padding: clamp(56px, 7vw, 92px) 0; }
.vp-lens-compare { background: #f5f3ee; color: #172331; }
.vp-lens-compare__shell,
.vp-home-recommendations__shell { width: min(100%, var(--vp-home-max)); margin-inline: auto; padding-inline: var(--vp-home-gutter); }
.vp-lens-compare__shell { display: block; }
.vp-lens-compare__eyebrow,
.vp-price-shop__copy > span,
.vp-why-us__heading > span { display: block; margin-bottom: 10px; color: #47758e; font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.vp-lens-compare__intro h2,
.vp-price-shop h2,
.vp-why-us h2 { margin: 0; font-size: clamp(28px, 3vw, 44px); line-height: 1.08; letter-spacing: -.035em; }
.vp-lens-compare__intro { display: grid; grid-template-columns: 1.2fr .8fr; margin-bottom: clamp(36px, 5vw, 58px); align-items: end; gap: 50px; }
.vp-lens-compare__intro h2 { max-width: 700px; color: #162434; }
.vp-lens-compare__intro p { max-width: 520px; margin: 0; color: #68727c; line-height: 1.65; }
.vp-lens-compare__guide { display: inline-flex; margin-top: 16px; align-items: center; gap: 8px; border-bottom: 1px solid #718391; color: #233e51; font-size: 13px; font-weight: 750; text-decoration: none; }
.vp-lens-compare__guide:hover { color: #2b719b; }
.vp-lens-compare__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); overflow: hidden; border: 1px solid #d8d7d2; border-radius: 3px; background: #fff; }
.vp-lens-option { position: relative; min-width: 0; min-height: 290px; padding: 34px 28px 30px; border-right: 1px solid #e1e1dd; background: #fff; transition: background-color .25s ease; }
.vp-lens-option:last-child { border-right: 0; }
.vp-lens-option::after { content: attr(data-number); position: absolute; top: 28px; right: 26px; color: #a5aaad; font-size: 10px; font-weight: 750; letter-spacing: .12em; }
.vp-lens-option:hover { background: #f8faf9; }
.vp-lens-option__icon { display: grid; width: 64px; height: 64px; margin-bottom: 50px; place-items: center; border: 1px solid #cbd6da; border-radius: 50%; background: transparent; color: #315f75; font-size: 21px; }
.vp-lens-option__best { display: block; min-height: 0; color: #71808a; font-size: 9px; font-weight: 750; letter-spacing: .11em; text-transform: uppercase; }
.vp-lens-option h3 { margin: 8px 0 11px; color: #182735; font-size: 20px; font-weight: 700; }
.vp-lens-option p { max-width: 230px; margin: 0; color: #65717a; font-size: 12.5px; line-height: 1.6; }

.vp-home-recommendations { background: #fff; }
.vp-price-shop { display: grid; grid-template-columns: minmax(240px, .72fr) minmax(0, 1.45fr); align-items: center; gap: clamp(34px, 6vw, 90px); padding: clamp(30px, 4vw, 58px); border-radius: 22px; background: #edf3f5; }
.vp-price-shop__copy > span,
.vp-why-us__heading > span { color: #39779d; }
.vp-price-shop__copy p { margin: 14px 0 0; color: #62707d; line-height: 1.6; }
.vp-price-shop__links { display: grid; grid-template-columns: repeat(auto-fit, minmax(165px, 1fr)); gap: 12px; }
.vp-price-shop__slide { min-width: 0; }
.vp-price-shop__slide > a { height: 100%; }
.vp-price-shop__carousel-wrap { position: relative; min-width: 0; }
.vp-price-shop__links--carousel { position: relative; display: block; margin-inline: -6px; }
.vp-price-shop__links--carousel .slick-list { overflow: hidden; }
.vp-price-shop__links--carousel .slick-track { display: flex; }
.vp-price-shop__links--carousel .slick-slide { height: auto; padding-inline: 6px; }
.vp-price-shop__links--carousel .slick-slide > div,
.vp-price-shop__links--carousel .vp-price-shop__slide { height: 100%; }
.vp-price-shop__nav { display: flex; margin-top: 18px; align-items: center; justify-content: flex-end; gap: 8px; }
.vp-price-shop__arrow { display: grid; width: 42px; height: 42px; padding: 0; place-items: center; border: 1px solid #ccd8dd; border-radius: 50%; background: #fff; color: #285e7c; transition: background-color .2s ease, opacity .2s ease; }
.vp-price-shop__arrow:hover:not(.slick-disabled) { background: #e8f1f5; }
.vp-price-shop__arrow.slick-disabled { opacity: .35; cursor: default; }
.vp-price-shop__links--carousel .slick-dots { position: absolute; right: 108px; bottom: -48px; display: flex; margin: 0; gap: 6px; }
.vp-price-shop__links--carousel .slick-dots li { width: auto; height: auto; margin: 0; }
.vp-price-shop__links--carousel .slick-dots button { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 99px; background: #b7c6cc; font-size: 0; transition: width .2s ease, background-color .2s ease; }
.vp-price-shop__links--carousel .slick-dots .slick-active button { width: 22px; background: #39779d; }
.vp-price-shop__links a { position: relative; display: flex; min-height: 280px; aspect-ratio: 3 / 4; padding: 22px; flex-direction: column; justify-content: flex-end; overflow: hidden; border: 1px solid rgba(27,59,78,.08); border-radius: 14px; background: #233442; color: #fff; text-decoration: none; transition: transform .22s ease, box-shadow .22s ease; isolation: isolate; }
.vp-price-shop__links a > img { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .45s ease; }
.vp-price-shop__links a:hover > img { transform: scale(1.035); }
.vp-price-shop__overlay { position: absolute; z-index: -1; inset: 0; margin: 0 !important; background: linear-gradient(180deg, rgba(10,20,28,.04) 28%, rgba(10,20,28,.82) 100%); }
.vp-price-shop__content { display: flex; margin: 0 !important; flex-direction: column; }
.vp-price-shop__links a:hover { box-shadow: 0 14px 30px rgba(28,54,70,.1); transform: translateY(-4px); }
.vp-price-shop__content small { margin-bottom: 5px; color: rgba(255,255,255,.78); font-size: 11px; }
.vp-price-shop__content strong { color: #fff; font-size: 18px; }
.vp-price-shop__content > span { margin-top: 7px; color: rgba(255,255,255,.68); font-size: 10px; font-weight: 650; text-transform: uppercase; letter-spacing: .08em; }
.vp-price-shop__arrow-icon { position: absolute; top: 18px; right: 18px; display: grid; width: 34px; height: 34px; margin: 0 !important; place-items: center; border-radius: 50%; background: rgba(255,255,255,.9); color: #2b607d; }
.vp-price-shop__arrow-icon svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

@media (min-width: 1200px) {
    .vp-home-recommendations { padding-block: 48px; }
    .vp-home-recommendations__shell {
        width: 100%;
        max-width: none;
        padding-inline: clamp(24px, 2.2vw, 42px);
    }
    .vp-price-shop {
        width: 100%;
        gap: clamp(40px, 5vw, 84px);
        padding: clamp(38px, 3.4vw, 58px);
    }
}

.vp-why-us { display: grid; grid-template-columns: .48fr 1.52fr; gap: clamp(30px, 5vw, 76px); margin-top: clamp(54px, 7vw, 88px); align-items: start; }
.vp-why-us__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.vp-why-us__grid > div { display: flex; flex-direction: column; }
.vp-why-us__grid i { display: grid; width: 46px; height: 46px; margin-bottom: 18px; place-items: center; border-radius: 50%; background: #eaf3f8; color: #2b6e96; font-size: 19px; }
.vp-why-us__grid strong { color: #1d2b3a; font-size: 15px; }
.vp-why-us__grid small { margin-top: 8px; color: #687684; font-size: 12px; line-height: 1.55; }

@media (max-width: 1100px) {
    .vp-price-shop { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
    .vp-lens-compare__intro { grid-template-columns: 1fr; gap: 18px; }
    .vp-lens-compare__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .vp-lens-option { min-height: 270px; border-bottom: 1px solid #e1e1dd; }
    .vp-lens-option:nth-child(2) { border-right: 0; }
    .vp-home-recommendations { padding-block: 46px; overflow: hidden; }
    .vp-home-recommendations__shell { padding-inline: 12px; }
    .vp-price-shop { gap: 26px; padding: 26px 16px 22px; overflow: hidden; border-radius: 16px; }
    .vp-price-shop__copy h2 { font-size: clamp(27px, 8vw, 34px); }
    .vp-price-shop__copy p { margin-top: 10px; font-size: 13px; line-height: 1.55; }
    .vp-price-shop__links:not(.vp-price-shop__links--carousel) { display: flex; gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
    .vp-price-shop__links:not(.vp-price-shop__links--carousel)::-webkit-scrollbar { display: none; }
    .vp-price-shop__links:not(.vp-price-shop__links--carousel) .vp-price-shop__slide { flex: 0 0 82%; scroll-snap-align: start; }
    .vp-price-shop__links a { width: 100%; min-height: 0; padding: 18px; aspect-ratio: 3 / 4; }
    .vp-price-shop__links a:hover { transform: none; }
    .vp-price-shop__links--carousel { margin-inline: -5px; }
    .vp-price-shop__links--carousel .slick-list { overflow: hidden; }
    .vp-price-shop__links--carousel .slick-slide { padding-inline: 5px; }
    .vp-price-shop__links--carousel .slick-dots { position: static; margin-top: 18px; justify-content: center; }
    .vp-price-shop__nav { min-height: 0; margin-top: 0; }
    .vp-price-shop__arrow-icon { top: 14px; right: 14px; width: 32px; height: 32px; }
    .vp-price-shop__content strong { font-size: 17px; }
    .vp-why-us { grid-template-columns: 1fr; }
    .vp-why-us__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 18px; }
}
@media (max-width: 420px) {
    .vp-lens-compare__grid { grid-template-columns: 1fr; }
    .vp-lens-option__icon { margin-bottom: 18px; }
}

.vp-footer {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: #0e1b2c;
    color: #c8d1dc;
}

.vp-footer::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -240px;
    bottom: -260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(36, 108, 155, .2), transparent 68%);
    pointer-events: none;
}

.vp-footer-cta {
    position: relative;
    z-index: 1;
    padding: clamp(28px, 4vw, 48px) var(--vp-home-gutter);
    background: #eaf3f8;
    color: #142238;
}

.vp-footer-cta__inner {
    display: flex;
    width: min(100%, var(--vp-home-max));
    margin-inline: auto;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}

.vp-footer-cta__copy {
    max-width: 720px;
}

.vp-footer-cta__eyebrow {
    display: block;
    margin-bottom: 8px;
    color: #36698b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.vp-footer-cta h2 {
    margin: 0;
    color: #142238;
    font-size: clamp(1.65rem, 3vw, 2.65rem);
    font-weight: 750;
    line-height: 1.08;
    letter-spacing: -.03em;
    text-wrap: balance;
}

.vp-footer-cta p {
    margin: 12px 0 0;
    color: #5f6e80;
    font-size: 15px;
    line-height: 1.6;
}

.vp-footer-cta__actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 12px;
}

.vp-footer-button {
    display: inline-flex;
    min-height: 50px;
    padding: 12px 22px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #18334f;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none;
    transition: transform .2s ease, background-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.vp-footer-button:hover {
    transform: translateY(-2px);
}

.vp-footer-button--primary {
    background: #142b45;
    color: #fff;
    box-shadow: 0 10px 24px rgba(20, 43, 69, .14);
}

.vp-footer-button--primary:hover {
    background: #246c9b;
    border-color: #246c9b;
    color: #fff;
}

.vp-footer-button--secondary {
    background: transparent;
    color: #142b45;
}

.vp-footer-button--secondary:hover {
    background: #fff;
    color: #142b45;
}

.vp-footer .footer-wide-container {
    position: relative;
    z-index: 1;
    width: min(100%, var(--vp-home-max)) !important;
    max-width: var(--vp-home-max) !important;
    padding-inline: var(--vp-home-gutter) !important;
    margin-inline: auto;
}

.vp-footer-main {
    padding: clamp(58px, 7vw, 88px) 0 42px !important;
    background: transparent !important;
}

.vp-footer-main .row {
    row-gap: 34px;
}

.vp-footer-support-intro {
    max-width: 340px;
    margin-bottom: 30px;
}

.vp-footer-support-intro__eyebrow {
    display: block;
    margin-bottom: 9px;
    color: #69acd2;
    font-size: 9px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.vp-footer-support-intro h3 {
    margin: 0;
    color: #f7fafc;
    font-size: clamp(22px, 2vw, 29px);
    font-weight: 750;
    line-height: 1.12;
    letter-spacing: -.025em;
    text-wrap: balance;
}

.vp-footer-support-intro p {
    margin: 11px 0 0 !important;
    color: #aebac8 !important;
    font-size: 13px;
    line-height: 1.65;
}

.vp-footer .widget-title,
.vp-footer .widget-about h5 {
    position: relative;
    margin: 0 0 23px !important;
    color: #fff !important;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.vp-footer .widget-title::after,
.vp-footer .widget-about h5::after {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    margin-top: 10px;
    border-radius: 99px;
    background: #4c98c6;
}

.vp-footer .widget-about h5.mt-20 {
    margin-top: 26px !important;
}

.vp-footer .widget-about p,
.vp-footer-main p {
    margin-bottom: 10px;
    color: #aebac8 !important;
    font-size: 13px;
    line-height: 1.7;
}

.vp-footer .widget-about p strong {
    color: #eaf0f5;
    font-weight: 700;
}

.vp-footer .footer-list {
    margin: 0;
}

.vp-footer .footer-list li {
    margin: 0 0 12px;
    padding: 0;
}

.vp-footer .footer-list li:hover {
    padding-left: 0;
}

.vp-footer .footer-list a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #aebac8 !important;
    font-size: 13px;
    line-height: 1.5;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}

.vp-footer .footer-list a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -3px;
    height: 1px;
    background: #69acd2;
    transition: right .2s ease;
}

.vp-footer .footer-list a:hover {
    color: #fff !important;
    transform: translateX(3px);
}

.vp-footer .footer-list a:hover::after {
    right: 0;
}

.vp-footer .mobile-social-icon {
    display: flex;
    gap: 9px;
}

.vp-footer .mobile-social-icon a {
    display: grid;
    width: 38px;
    height: 38px;
    margin: 0;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.vp-footer .mobile-social-icon a:hover {
    border-color: #4c98c6;
    background: #2c749f;
    transform: translateY(-2px);
}

.vp-footer .mobile-social-icon a img {
    width: 16px;
    height: 16px;
    margin: 0;
    filter: brightness(0) invert(1);
}

.vp-footer .selec-btns {
    margin: 22px 0 28px;
}

.vp-footer .selec-btns .select-lens {
    display: inline-flex;
    min-height: 42px;
    padding: 9px 17px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    color: #fff !important;
    font-size: 12px;
    font-weight: 700;
    overflow: hidden;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.vp-footer .selec-btns .select-lens::before,
.vp-footer .selec-btns .select-lens:nth-child(2)::before {
    display: none !important;
    content: none !important;
}

.vp-footer .selec-btns .select-lens:hover,
.vp-footer .selec-btns .select-lens:focus-visible {
    border-color: rgba(105, 172, 210, .7);
    background: rgba(105, 172, 210, .16);
    color: #fff !important;
    transform: translateY(-2px);
}

.vp-footer .selec-btns .select-lens:focus-visible {
    outline: 3px solid rgba(105, 172, 210, .22);
    outline-offset: 2px;
}

.vp-footer-main img[alt="payment method"] {
    max-width: 250px;
    padding: 10px 12px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .94);
}

.vp-footer-legal {
    padding-top: 25px !important;
    padding-bottom: 28px !important;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.vp-footer-legal .footer-bottom,
.vp-footer-legal .col-12.mb-20 {
    display: none;
}

.vp-footer-legal p,
.vp-footer-legal .text-muted {
    color: #8290a1 !important;
    line-height: 1.6;
}

.vp-footer-legal strong,
.vp-footer-legal a {
    color: #cbd6e0 !important;
}

@media (max-width: 991px) {
    .vp-footer-cta__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
    }

    .vp-footer-main .col-lg-4:first-child {
        padding-right: 40px;
    }
}

@media (max-width: 767px) {
    .vp-footer-cta {
        padding-block: 38px;
    }

    .vp-footer-cta__actions {
        width: 100%;
        flex-direction: column;
    }

    .vp-footer-button {
        width: 100%;
    }

    .vp-footer-main {
        padding-top: 52px !important;
    }

    .vp-footer-main .col-lg-4:first-child {
        padding-right: calc(var(--bs-gutter-x) * .5);
    }

    .vp-footer .widget-title,
    .vp-footer .widget-about h5 {
        margin-bottom: 18px !important;
    }

    .vp-footer-legal {
        text-align: center;
    }

    .vp-footer-legal p,
    .vp-footer-legal .text-lg-end,
    .vp-footer-legal .text-start {
        margin-top: 7px;
        text-align: center !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vp-shape-card, .vp-button { transition: none; }
}

/* Keep only the main logo/actions row visible while scrolling on mobile and tablet. */
@media (min-width: 992px) {
    .header-area.navbar-modern .navbar-left .navbar-logo img {
        width: auto !important;
        height: 36px !important;
    }
}

@media (max-width: 991.98px) {
    .navbar-promo-bar {
        position: relative;
        z-index: 1;
    }

    .header-area.navbar-modern {
        position: -webkit-sticky !important;
        position: sticky !important;
        z-index: 1050 !important;
        top: 0 !important;
        width: 100%;
    }

    .header-area.navbar-modern .navbar-info-bar {
        display: none !important;
    }

    .header-area.navbar-modern .navbar-main {
        background: #fff;
        box-shadow: 0 5px 18px rgba(20, 36, 52, .09);
    }

    /* Center homepage section headings on mobile and tablet. */
    .eyewear-vibe-band__inner,
    .daily-wear-showcase__copy,
    .homepage-product-copy,
    .vp-section-heading,
    .vp-insights .vp-section-heading,
    .vp-price-shop__copy {
        text-align: center !important;
    }

    .daily-wear-showcase__header,
    .homepage-product-header {
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;
        gap: 14px !important;
        text-align: center !important;
    }

    .daily-wear-showcase__copy,
    .homepage-product-copy,
    .vp-price-shop__copy {
        width: 100% !important;
        max-width: 760px !important;
        margin-inline: auto !important;
    }

    .daily-wear-showcase__subtitle,
    .homepage-product-subtitle,
    .eyewear-vibe-band__subtitle,
    .vp-section-heading p,
    .vp-price-shop__copy p {
        margin-inline: auto !important;
    }

    .daily-wear-showcase__actions,
    .homepage-product-header-actions {
        justify-content: center !important;
        margin-inline: auto !important;
    }
}

/* Refined frame-shape gallery: real catalogue imagery, no artificial icons */
:root {
    --vp-home-max: 1440px;
    --vp-home-gutter: clamp(16px, 3vw, 32px);
    --vp-home-section-space: clamp(56px, 7vw, 96px);
}

.eyewear-vibe-band__inner,
.vp-discovery__shell,
.vp-order-guide__shell,
.vp-trust-strip__shell {
    width: min(100%, var(--vp-home-max)) !important;
    padding-inline: var(--vp-home-gutter);
    margin-inline: auto;
}

.vp-discovery,
.vp-order-guide {
    padding-block: var(--vp-home-section-space);
    padding-inline: 0;
}

.vp-section-heading {
    margin-bottom: clamp(34px, 4vw, 52px);
}

.homepage-content-shell {
    padding-inline: 0 !important;
}

.vp-discovery {
    background: #fff;
}

.vp-shape-grid {
    gap: clamp(16px, 1.8vw, 28px);
}

.vp-shape-card {
    min-height: 0;
    padding: 0;
    justify-content: flex-start;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.vp-shape-card:hover,
.vp-shape-card:focus-visible {
    border-color: transparent;
    box-shadow: none;
    transform: none;
}

.vp-shape-card__media {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 50%;
    background: linear-gradient(145deg, #f7f8fa, #e9edf2);
    box-shadow: inset 0 0 0 1px rgba(25, 38, 58, .06);
}

.vp-shape-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(23, 34, 56, .08);
    border-radius: inherit;
    pointer-events: none;
}

.vp-shape-card__media img {
    width: 100%;
    height: 100%;
    padding: 10%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform .35s ease;
}

.vp-shape-card:hover .vp-shape-card__media img,
.vp-shape-card:focus-visible .vp-shape-card__media img {
    transform: scale(1.07);
}

.vp-shape-card__name {
    margin-top: 16px;
    color: #172238;
    font-size: clamp(15px, 1.4vw, 19px);
    font-weight: 750;
}

.vp-shape-card__cta {
    margin-top: 4px;
    color: #647287;
}

/* Admin-managed product banners use the same natural image ratio as the hero */
.vp-product-banners {
    position: relative;
    width: 100%;
    min-height: 0;
    overflow: hidden;
    background: #fff;
}

.homepage-product-stack > .vp-product-banners {
    width: 100%;
    margin-left: 0;
}

.vp-product-banners .carousel-item {
    position: relative;
    min-height: 0;
    padding-top: 40%;
    overflow: hidden;
}

.vp-product-banner__link,
.vp-product-banner__image {
    position: absolute;
    inset: 0;
    display: block;
}

.vp-product-banner__link {
    z-index: 1;
    cursor: pointer;
}

.vp-product-banner__image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.vp-product-banners .carousel-control-prev,
.vp-product-banners .carousel-control-next {
    z-index: 3;
    width: clamp(42px, 6vw, 72px);
}

.vp-product-banners .carousel-indicators {
    z-index: 3;
}

.vp-product-banners .carousel-indicators [data-bs-target] {
    min-width: 24px;
    min-height: 4px;
    margin-inline: 4px;
    border-radius: 999px;
}

@media (max-width: 991px) {
    .vp-shape-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 30px;
    }
}

@media (max-width: 767px) {
    .vp-discovery {
        padding-inline: 0;
    }

    .vp-discovery .vp-section-heading {
        padding-inline: 20px;
    }

    .vp-shape-grid {
        display: flex;
        gap: 14px;
        padding: 2px 18px 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .vp-shape-grid::-webkit-scrollbar {
        display: none;
    }

    .vp-shape-card {
        flex: 0 0 min(39vw, 160px);
        scroll-snap-align: start;
    }

    .vp-shape-card__media {
        border-radius: 50%;
    }

    .vp-shape-card__name {
        margin-top: 12px;
        font-size: 15px;
    }

    .vp-shape-card__cta {
        font-size: 10px;
    }
}

@media (max-width: 380px) {
    .vp-shape-card {
        flex-basis: 44vw;
    }
}
