/* Enhanced Size Chart Link Styling */
.chawkbazar-size-chart-link-section {
    margin-top: 25px;
    padding: 0;
    text-align: center;
}

.chawkbazar-size-chart-link {
    margin: 0;
    font-size: 16px;
}

.chawkbazar-size-chart-link a {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.chawkbazar-size-chart-link a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.chawkbazar-size-chart-link a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4c93 100%);
}

.chawkbazar-size-chart-link a:hover::before {
    left: 100%;
}

.chawkbazar-size-chart-link a:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 15px rgba(102, 126, 234, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .chawkbazar-size-chart-link-section {
        margin-top: 20px;
    }
    
    .chawkbazar-size-chart-link a {
        padding: 12px 30px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .chawkbazar-size-chart-link a {
        padding: 10px 25px;
        font-size: 13px;
        letter-spacing: 0.5px;
    }
}
