#home-featured-catalog .gf-notebooks-strip {
    --gf-nb-ink: #07111f;
    --gf-nb-cyan: #2f9ed8;
    --gf-nb-mint: #1fbfa5;
    position: relative;
    margin: 0.35rem 0 0.85rem;
    padding: 1.25rem 0.85rem 1.25rem;
    border-radius: 18px;
    background:
        radial-gradient(ellipse 70% 90% at 8% 20%, rgba(47, 158, 216, 0.22), transparent 55%),
        radial-gradient(ellipse 55% 70% at 92% 80%, rgba(31, 191, 165, 0.14), transparent 50%),
        linear-gradient(145deg, #07111f 0%, #0c1a2e 48%, #0a1626 100%);
    box-shadow:
        0 18px 40px rgba(7, 17, 31, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

#home-featured-catalog .gf-notebooks-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 85%);
}

#home-featured-catalog .gf-notebooks-strip::after {
    content: "";
    position: absolute;
    top: -40%;
    right: -12%;
    width: 42%;
    height: 120%;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 30%, rgba(47, 158, 216, 0.12) 50%, transparent 70%);
    transform: rotate(12deg);
    animation: gf-nb-sweep 7.5s ease-in-out infinite;
}

@keyframes gf-nb-sweep {
    0%,
    100% {
        opacity: 0.35;
        transform: translateX(0) rotate(12deg);
    }
    50% {
        opacity: 0.7;
        transform: translateX(-18%) rotate(12deg);
    }
}

#home-featured-catalog .gf-notebooks-strip__head {
    position: relative;
    z-index: 1;
    padding: 0 0.35rem;
}

#home-featured-catalog .gf-notebooks-strip__title {
    margin-bottom: 0.85rem !important;
}

#home-featured-catalog .gf-notebooks-strip__title::before {
    display: none !important;
}

#home-featured-catalog .gf-notebooks-strip__title span {
    background: transparent !important;
    color: #e8f4ff;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-shadow: 0 2px 18px rgba(47, 158, 216, 0.35);
    position: relative;
    display: inline-block;
    padding-bottom: 0.35rem;
}

#home-featured-catalog .gf-notebooks-strip__title span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #2f9ed8, #1fbfa5, transparent);
}

#home-featured-catalog .gf-notebooks-strip .category-cards-scroll {
    position: relative;
    z-index: 1;
    mask-image: linear-gradient(90deg, transparent 0, #000 2.5%, #000 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 2.5%, #000 96%, transparent 100%);
}

#home-featured-catalog .gf-notebooks-strip .catalog-home-strip-item {
    width: min(292px, 88vw);
    max-width: 320px;
    animation: gf-nb-card-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

#home-featured-catalog .gf-notebooks-strip .catalog-home-strip-item:nth-child(1) {
    animation-delay: 0.04s;
}
#home-featured-catalog .gf-notebooks-strip .catalog-home-strip-item:nth-child(2) {
    animation-delay: 0.1s;
}
#home-featured-catalog .gf-notebooks-strip .catalog-home-strip-item:nth-child(3) {
    animation-delay: 0.16s;
}
#home-featured-catalog .gf-notebooks-strip .catalog-home-strip-item:nth-child(4) {
    animation-delay: 0.22s;
}
#home-featured-catalog .gf-notebooks-strip .catalog-home-strip-item:nth-child(5) {
    animation-delay: 0.28s;
}
#home-featured-catalog .gf-notebooks-strip .catalog-home-strip-item:nth-child(n + 6) {
    animation-delay: 0.32s;
}

@keyframes gf-nb-card-in {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

#home-featured-catalog .gf-notebooks-strip .product-item {
    position: relative;
    background:
        linear-gradient(180deg, #ffffff 0%, #f7fbff 58%, #eef6fb 100%);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.22),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
    transition:
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}

#home-featured-catalog .gf-notebooks-strip .product-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 3;
    background: linear-gradient(90deg, #1a7bb8 0%, #2f9ed8 45%, #1fbfa5 100%);
}

#home-featured-catalog .gf-notebooks-strip .product-item::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 55% at 50% 0%, rgba(47, 158, 216, 0.12), transparent 60%);
    opacity: 1;
    transition: opacity 0.28s ease;
}

#home-featured-catalog .gf-notebooks-strip .product-item:hover {
    transform: translateY(-10px) scale(1.015);
    border-color: rgba(47, 158, 216, 0.65);
    box-shadow:
        0 22px 44px rgba(0, 0, 0, 0.34),
        0 0 0 1px rgba(47, 158, 216, 0.28),
        0 0 28px rgba(47, 158, 216, 0.18);
}

#home-featured-catalog .gf-notebooks-strip .product-item:hover::after {
    opacity: 1;
    background:
        radial-gradient(ellipse 90% 60% at 50% 0%, rgba(31, 191, 165, 0.16), transparent 62%),
        radial-gradient(ellipse 70% 50% at 100% 100%, rgba(47, 158, 216, 0.1), transparent 55%);
}

#home-featured-catalog .gf-notebooks-strip .product-item .product-img {
    position: relative;
    z-index: 1;
    background:
        radial-gradient(circle at 50% 40%, #ffffff 0%, #e8f2fa 70%, #d7e8f4 100%);
    border-bottom: 1px solid rgba(26, 123, 184, 0.1);
}

#home-featured-catalog .gf-notebooks-strip .product-item .product-img::after {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    bottom: 10%;
    height: 18%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at center, rgba(7, 17, 31, 0.16), transparent 70%);
    filter: blur(2px);
}

#home-featured-catalog .gf-notebooks-strip .product-item .product-img img {
    position: relative;
    z-index: 1;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
    filter: drop-shadow(0 8px 16px rgba(7, 17, 31, 0.18));
}

#home-featured-catalog .gf-notebooks-strip .product-item:hover .product-img img {
    transform: scale(1.08) translateY(-4px);
    filter: drop-shadow(0 14px 22px rgba(7, 17, 31, 0.28));
}

#home-featured-catalog .gf-notebooks-strip .product-item .text-center,
#home-featured-catalog .gf-notebooks-strip .product-item > .card-body,
#home-featured-catalog .gf-notebooks-strip .product-item .py-4 {
    position: relative;
    z-index: 1;
}

#home-featured-catalog .gf-notebooks-strip .product-item .badge {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
    letter-spacing: 0.02em;
}

#home-featured-catalog .gf-notebooks-strip .product-item h6,
#home-featured-catalog .gf-notebooks-strip .product-item .h6 {
    color: #0f2740 !important;
    font-weight: 700;
}

#home-featured-catalog .gf-notebooks-strip .gf-payment-prices {
    background: linear-gradient(145deg, #ffffff 0%, #e8f8f4 48%, #e4f0fb 100%);
    border: 1px solid rgba(31, 191, 165, 0.35);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

#home-featured-catalog .gf-notebooks-strip .gf-payment-prices__label {
    color: #3d5266;
}

#home-featured-catalog .gf-notebooks-strip .gf-payment-prices__value--debit {
    color: #0a7a68;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

#home-featured-catalog .gf-notebooks-strip .gf-payment-prices__value--credit {
    color: #1a56c4;
}

#home-featured-catalog .gf-notebooks-strip .product-item .gf-pc-v3-btn-buy {
    box-shadow: 0 8px 18px rgba(220, 38, 38, 0.28);
}

#home-featured-catalog .gf-notebooks-strip .product-item:hover .gf-pc-v3-btn-buy {
    box-shadow: 0 10px 24px rgba(220, 38, 38, 0.38);
}

#home-featured-catalog .gf-notebooks-strip + .catalog-ver-mas-wrap .btn {
    background: linear-gradient(90deg, #1a7bb8, #1fbfa5);
    border: 0;
    box-shadow: 0 8px 20px rgba(26, 123, 184, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#home-featured-catalog .gf-notebooks-strip + .catalog-ver-mas-wrap .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(26, 123, 184, 0.45);
}

@media (prefers-reduced-motion: reduce) {
    #home-featured-catalog .gf-notebooks-strip::after,
    #home-featured-catalog .gf-notebooks-strip .catalog-home-strip-item {
        animation: none !important;
    }

    #home-featured-catalog .gf-notebooks-strip .catalog-home-strip-item {
        opacity: 1 !important;
        transform: none !important;
    }

    #home-featured-catalog .gf-notebooks-strip .product-item:hover,
    #home-featured-catalog .gf-notebooks-strip .product-item:hover .product-img img {
        transform: none;
        filter: none;
    }
}
