/* Product Features Block */
.shop_product_features {
    margin-bottom: 3rem;
    border-radius: var(--br-12);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.blue {
    background: radial-gradient(100% 100% at 50% 0%, rgb(115 149 255) 0%, rgb(94 133 255) 100%);
    border: 1px solid rgb(96, 128, 255);
    box-shadow: rgba(96, 128, 255, 0.24) 0px 0px 50px;
    border-radius: 12px;
    padding: 5px;
    transition: var(--transition-duration);
}

.benefit__gif {
    border-radius: 12px;
    min-height: 100%;
    object-fit: cover;
    position: relative;
    width: 100%;
    z-index: 3;
}

.premium__benefit-images>img:not(:first-child) {
    position: absolute;
    z-index: 5;
}

.premium__benefit-images {
    align-items: center;
    display: flex;
    height: 300px;
    justify-content: center;
    position: relative;
    width: 450px;
}

.benefit-img__awp {
    bottom: 0;
    right: 0;
}

.shop_features_wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.shop_features_scroll_trigger {
    height: 1px;
    width: 100%;
    margin: 2rem 0;
}

.shop_feature_block {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin: 0rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.shop_feature_block.visible {
    opacity: 1;
    transform: translateY(0);
}

.shop_feature_block.reverse_feature {
    flex-direction: row-reverse;
}

.shop_feature_content {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.shop_feature_icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem auto;
    color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop_feature_icon svg {
    width: 100%;
    height: 100%;
}

.shop_feature_name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--custom-text-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.shop_feature_multiplier {
    background: var(--main-color);
    color: var(--custom-text-color);
    padding: 0.2rem 0.5rem;
    border-radius: var(--br-4);
    font-size: 0.9rem;
    font-weight: 600;
}

.shop_feature_description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-custom);
    margin-bottom: 1.5rem;
    text-align: center;
}

.shop_feature_images {
    flex: 1;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature__gif {
    max-width: 80%;
    height: auto;
    border-radius: 12px;
}

.feature_img__knife,
.feature_img__cases {
    position: absolute;
    max-width: 80px;
    height: auto;
}

.feature_img__knife {
    top: 20%;
    right: 10%;
}

.feature_img__cases {
    bottom: 20%;
    left: 10%;
}

.under_demo_images {
    position: absolute;
    bottom: -20px;
    right: -20px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature_number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--main-color);
    opacity: 0.3;
}

.feature_img__blured-weapon {
    max-width: 200px;
    height: auto;
    opacity: 0.1;
    filter: blur(2px);
}

/* Bottom Section */
.shop_features_bottom {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.shop_features_bottom h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--custom-text-color);
    margin-bottom: 1rem;
}

.shop_features_bottom p {
    font-size: 1.2rem;
    color: var(--span);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.shop_features_button {
    background: var(--button);
    color: var(--custom-text-color);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: var(--br-8);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-duration);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.shop_features_button:hover {
    background: var(--button-hover);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .shop_feature_block {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .shop_feature_block.reverse_feature {
        flex-direction: column;
    }
    
    .shop_feature_content {
        min-width: auto;
        text-align: center;
    }
    
    .shop_feature_images {
        min-height: 200px;
    }
    
    .feature_img__knife,
    .feature_img__cases {
        display: none;
    }
}

@media (max-width: 768px) {
    .shop_product_features {
        margin: 2rem 1rem;
        padding: 1.5rem;
    }
    
    .shop_feature_name {
        font-size: 1.5rem;
    }
    
    .shop_feature_description {
        font-size: 1rem;
    }
    
    .shop_features_bottom h2 {
        font-size: 1.8rem;
    }
    
    .shop_features_bottom p {
        font-size: 1.1rem;
    }
    
    .shop_features_button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .feature_number {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .shop_feature_icon {
        width: 50px;
        height: 50px;
    }
    
    .shop_feature_name {
        font-size: 1.3rem;
    }
    
    .shop_features_bottom h2 {
        font-size: 1.6rem;
    }
    
    .shop_features_button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Animation for scroll trigger */
.shop_feature_block:nth-child(odd) {
    transition-delay: 0.2s;
}

.shop_feature_block:nth-child(even) {
    transition-delay: 0.4s;
}

/* Hover effects */
.shop_feature_content:hover .shop_feature_icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.shop_feature_content:hover .shop_feature_name {
    color: var(--main-color);
    transition: color 0.3s ease;
}

/* Loading animation */
.shop_product_features.loading .shop_feature_block {
    opacity: 0;
    transform: translateY(30px);
}

.shop_product_features.loaded .shop_feature_block {
    opacity: 1;
    transform: translateY(0);
}
