.ztqk-container {
    max-width: 1486px;
    width: 100%;
    margin: 0 auto;
  padding-top:45px;
}

.ztqk-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    width: 1468px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.ztqk-section-title {
    font-size: 1.6rem;
    color: #333333;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 450;
    letter-spacing: 1px;
    margin: 0;
}

.ztqk-more-button {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.2);
    color: #333333;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.ztqk-more-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.ztqk-special-section {
    width: 1468px;
  padding-bottom: 55px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.ztqk-special-block {
    flex: 1;
    min-width: 265px;
    max-width: 265px;
    background: #fff;
    border-radius: 15px;
    padding: 0;
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.1),
        0 16px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ztqk-special-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: left 0.3s ease;
}

.ztqk-special-block:hover::before {
    left: 0;
}

.ztqk-special-block:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.15),
        0 16px 32px rgba(0, 0, 0, 0.15),
        0 32px 64px rgba(0, 0, 0, 0.2);
}

.ztqk-product-image-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.ztqk-product-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
    position: relative;
}

.ztqk-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.ztqk-special-block:hover .ztqk-product-image img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.ztqk-hover-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.ztqk-special-block:hover .ztqk-hover-title {
    opacity: 1;
}

.ztqk-block-title {
    font-size: 1.1rem;
    color: #333;
    margin: 15px 20px;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1468px) {
    .ztqk-special-section {
        width: 100%;
        padding: 0 20px;
        gap: 20px;
    }
    
    .ztqk-special-block {
        flex: 0 1 calc(25% - 20px);
        max-width: none;
    }
}

@media (max-width: 1024px) {
    .ztqk-special-block {
        flex: 0 1 calc(50% - 20px);
        max-width: 230px;
    }
}

@media (max-width: 768px) {
    .ztqk-section-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .ztqk-section-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .ztqk-special-section {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .ztqk-special-block {
        flex: 0 1 calc(50% - 15px);
        max-width: 230px;
        min-width: 230px;
    }
}

@media (max-width: 480px) {
    .ztqk-special-section {
        gap: 15px;
        padding: 0 15px;
    }
    
    .ztqk-special-block {
        flex: 0 1 calc(50% - 15px);
        max-width: 200px;
        min-width: 200px;
    }
    
    .ztqk-product-image {
        height: 120px;
    }
    
    .ztqk-block-title {
        font-size: 0.95rem;
        margin: 12px 15px;
        min-height: 35px;
    }
    
    .ztqk-section-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 360px) {
    .ztqk-special-section {
        flex-direction: column;
        align-items: center;
    }
    
    .ztqk-special-block {
        flex: 0 1 100%;
        max-width: 230px;
        min-width: auto;
    }
}